docker run 报错: dial tcp xxxxxxxx:443: i/o timeout报错
报错信息
error pulling image configuration: Get https://production.cloudflare.docker.com/registry-
v2/docker/registry/v2/blobs/sha256/d2/d23bdf5b1b1b1afce5f1d0fd33e7ed8afbc084b594b9ccf742a5b27080d8
a4a8/data?verify=1596513158-78B0ocrR%2Bn4iMvUrPrVx12jrGX8%3D: dial tcp 104.18.122.25:443: i/o timeout
看错误明显是拉镜像的地址不对,无法连接。
解决办法
由于daemon.json没有配置造成的,需修改daemon.json
vim /etc/docker/daemon.json
增加拉镜像的地址
{
"registry-mirrors":["https://hub-mirror.c.163.com","https://registry.aliyuncs.com","https://registry.docker-cn.com","https://docker.mirrors.ustc.edu.cn"]
}
修改后重启docker服务
service docker restart
注意:
如果daemon.json修改后docker出错了,可能是复制的过程有特殊字符,会出现如下错误
也无法重启成功,这时重新编辑下daemon.json
文件即可.
运行正常了。
问题解决
有问题随时联系。