当前位置:   article > 正文

Docker 拉取 报错【error pulling image configuration】及镜像下载慢问题_docker: error pulling image configuration: downloa

docker: error pulling image configuration: download failed after attempts=6:

Docker 拉取 报错【error pulling image configuration】及镜像下载慢问题

原因:
  出现这个问题原因为网络问题,无法连接到 docker hub。 但国内有 daocloud加速,docker指定该源即可

echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io\"" | sudo tee -a /etc/default/docker
DOCKER_OPTS="$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io"
  • 1
  • 2

镜像下载慢问题:
  vi /etc/docker/daemon.json

[root@192]# vi /etc/docker/daemon.json
  • 1
  • 添加以下内容:
{
  "registry-mirrors": ["https://hccwwfjl.mirror.aliyuncs.com"]
}

  • 1
  • 2
  • 3
  • 4

重新启动Docker
systemctl restart docker

[root@192]# systemctl restart docker
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/553366
推荐阅读
相关标签
  

闽ICP备14008679号