1.现象
如果直接docker pull CentOS 两个小时才down下来8M,很慢
在使用docker pull 下载mysql镜像时,速度很慢。。。
2.解决
[root@localhost 6Vcentos]# cd /etc/docker
[root@localhost 6Vcentos]# ls
certs.d daemon.json key.json seccomp.json
[root@localhost 6Vcentos]# cat daemon.json
{}
[root@localhost 6Vcentos]# vi daemon.json{"registry-mirrors": ["https://registry.dockercn.com","https://mj9kvemk.mirror.aliyuncs.com"]
}
重启docker
[root@localhost 6Vcentos]# service docker restart
Redirecting to /bin/systemctl restart docker.service
[root@localhost 6Vcentos]#
一开始["https://registry.dockercn.com","https://mj9kvemk.mirror.aliyuncs.com"] 只写了["https://registry.dockercn.com"]一个,速度依旧很慢,改成了两个后,速度变快了
参考:https://blog.csdn.net/ko289830707/article/details/102704659