Docker下载出现 error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net/

出现这个问题,一般的原因是无法连接到 docker hub(或者链接速度慢产生的错误),通过:

systemctl stop docker
echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io\"" | sudo tee -a /etc/default/docker
 service docker restart
然后就能正常使用docker  pull 

 只需要更改一次  根据http可以找到其他镜像网站

猜你喜欢

转载自blog.csdn.net/wuhaotian1996/article/details/80435360