本文主要是介绍docker 拉取镜像出错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
docker 拉取镜像出错
如果你的docker在拉取镜像时出现如下问题:error pulling image configuration: download failed after attempts=6: dial tcp 103.214.168.106:443: 不要怀疑就是因为镜像源不同。
解决方案
寻找可用的镜像加速我这里提供一种可用的镜像加速,目前测试可用。
{"registry-mirrors": ["https://docker.m.daocloud.io"]
}
- 修改 vim /etc/docker/daemon.json
vim /etc/docker/daemon.json
{"registry-mirrors": ["https://docker.m.daocloud.io"]
}
- 重新加载配置文件
systemctl daemon-reload
- 重启docker
systemctl restart docker
这篇关于docker 拉取镜像出错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!