当前位置:   article > 正文

Docker拉取镜像报错_error pulling image configuration: image config ve

error pulling image configuration: image config verification failed for dige

Docker拉取镜像报错error pulling image configuration
ERROR: error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/de/de65f dial tcp 104.18.122.25:443: i/o timeout

正确方法:
vim /etc/docker/daemon.json

{
“registry-mirrors”: [“https://docker.mirrors.ustc.edu.cn”]
}
  • 1
  • 2
  • 3

或者

{
“registry-mirrors”: [“https://registry.docker-cn.com”]
}
  • 1
  • 2
  • 3

修改完成需要重启

service docker restart
  • 1

错误方法1:
vim /etc/resolv.conf

nameserver 8.8.8.8
  • 1

错误方法2:

#同步时间:
ntpdate time.windows.com
  • 1
  • 2

错误方法3:

# 设置超时时间
export COMPOSE_HTTP_TIMEOUT=120
  • 1
  • 2

错误方法4:
vim /etc/default/docker

# DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4 --insecure-registry dockerhub.cyai.com"
DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4 --insecure-registry docker.mirrors.ustc.edu.cn"
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/743160
推荐阅读
相关标签
  

闽ICP备14008679号