有时候下载镜像太慢,导致下载失败,修改/etc/docker/daemon.json文件即可解决
参考:https://www.daocloud.io/mirror
1/etc/docker/daemon.json改文件内容
方法1
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io
方法2
vim /etc/docker/daemon.json
加入
{
"registry-mirrors": ["http://f1361db2.m.daocloud.io"]
}
2 重启docker
systemctl restart docker