(1)通过dig @114.114.114.114 registry-1.docker.io
找到可用IP
(2)尝试修改/etc/hosts
强制docker.io
相关的域名解析到其它可用IP
34.232.31.24 registry-1.docker.io
sudo curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io
该脚本可以将 --registry-mirror 加入到你的 Docker 配置文件 /etc/docker/daemon.json 中。适用于 Ubuntu14.04、Debian、CentOS6 、CentOS7、Fedora、Arch Linux、openSUSE Leap 42.1,其他版本可能有细微不同。更多详情请访问文档
然后重启docker服务,即可
sudo systemctl restart docker
原文:https://www.cnblogs.com/geduocoding/p/11154879.html