当前位置:   article > 正文

Docker 镜像下载加速(error pulling image configuration:download failed)_error response from daemon: error pulling image co

error response from daemon: error pulling image configuration: download fail

存在问题

在这里插入图片描述
拉取镜像一直失败

问题解决

修改配置文件:

vim /etc/docker/daemon.json

  • 1
  • 2

配置内容如下:
输入i开始输入

{
  "builder": {
    "gc": {
      "defaultKeepStorage": "20GB",
      "enabled": true
    }
  },
  "experimental": true,
  "features": {
    "buildkit": true
  },
  "insecure-registries": [
    "172.24.86.231"
  ],
  "registry-mirrors": [
    "https://dockerproxy.com",
    "https://mirror.baidubce.com",
    "https://ccr.ccs.tencentyun.com",
    "https://docker.m.daocloud.io",
    "https://docker.nju.edu.cn",
    "https://docker.mirrors.ustc.edu.cn"
  ],
  "log-driver":"json-file",
  "log-opts": {
    "max-size":"500m", 
    "max-file":"3"
  }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

输入:wq保存并退出

docker重启

sudo systemctl daemon-reload

sudo systemctl restart docker

  • 1
  • 2
  • 3
  • 4

解决结果

在这里插入图片描述

参考文献

https://blog.csdn.net/feiyanaffection/article/details/135032893

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/939019
推荐阅读
相关标签
  

闽ICP备14008679号