The docker mirror warehouse dockerhub cannot be accessed -- the solution

The docker mirror warehouse dockerhub cannot be accessed – the solution

In the previous article "docker mirror warehouse hub.docker.com cannot be accessed", many small partners reported that they do not know how to use magic, and want to use the official docker mirror warehouse to search for images. Today it is here!

Main content of the article:

  • personal mirror site
  • Why can't dockerhub be accessed

1 personal mirror site

Not much to say, go directly to the dockerhub personal mirror site ( 10w access is limited every day, as long as it is not blocked, access is always provided for free )

hub.axlinux.top

It is very fast and can be directly accessed without magic

Please add a picture description

mirror search possible

Please add a picture description

You can also view the image version number

Please add a picture description

2 why dockerhub cannot be accessed

It was mentioned in the previous article that dockerhub was polluted by dns, but later it was found that it was not only polluted, but walled!

If it is just dns pollution, we can manually specify the hosts file for access, but the actual ip cannot be accessed at all.

2.1 View the actual IP of dockerhub

3.228.146.75
18.210.197.188
18.206.20.10

Please add a picture description

2.2 ping detection

All packets lost, inaccessible

[root@waluna ~]# ping -c1 3.228.146.75
PING 3.228.146.75 (3.228.146.75) 56(84) bytes of data.

--- 3.228.146.75 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

[root@waluna ~]# ping -c1 18.210.197.188
PING 18.210.197.188 (18.210.197.188) 56(84) bytes of data.

--- 18.210.197.188 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

[root@waluna ~]# ping -c1 18.206.20.10
PING 18.206.20.10 (18.206.20.10) 56(84) bytes of data.

--- 18.206.20.10 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

[root@waluna ~]# 

Please add a picture description

Original link: docker mirror warehouse dockerhub cannot be accessed – solution .

Guess you like

Origin blog.csdn.net/qq_45520116/article/details/132328491