当前位置:   article > 正文

Docker镜像拉取失败解决方案_docker拉取镜像失败

docker拉取镜像失败


问题及分析

今天我用docker拉取镜像的时候报错

error pulling image configuration: download failed after attempts=6: dial tcp xxx.xx.xxx.xx:xxx: i/o timeout

请添加图片描述

连接超时大概率以下两个问题
1.DNS配置有误
2.镜像源配置问题
3.代理问题


解决方案

1.先排查DNS

检查resolv.conf中是否包含8.8.8.8和8.8.4.4

sudo vim /etc/resolv.conf
  • 1

在这里插入图片描述
包含说明DNS没问题大概率就是源的问题

2.修改源

进入daemon.json(如果没有手动创建)

sudo vim /etc/docker/daemon.json
  • 1

添加

{
    "registry-mirrors": [
        "https://docker.m.daocloud.io",
        "https://dockerproxy.com",
        "https://docker.mirrors.ustc.edu.cn",
        "https://docker.nju.edu.cn",
        "https://iju9kaj2.mirror.aliyuncs.com",
        "http://hub-mirror.c.163.com",
        "https://cr.console.aliyun.com",
        "https://hub.docker.com",
        "http://mirrors.ustc.edu.cn"
    ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在这里插入图片描述

3.代理配置

如果有代理的话需要配置,没有的话就不需要
进入proxy.conf(如果没有的话手动创建)

sudo vim /etc/systemd/system/docker.service.d/proxy.conf
  • 1

添加:

[Service]
Environment="HTTP_PROXY=http://xxx.xxx.xxx.xxx:xxxx/"
Environment="HTTPS_PROXY=http://xxx.xxx.xxx.xxx:xxxx/"
Environment="NO_PROXY=localhost,127.0.0.1,xxx.xxx.xxx.xxx"
  • 1
  • 2
  • 3
  • 4

4.重启docker服务

sudo systemctl daemon-reload
sudo systemctl restart docker
  • 1
  • 2

问题解决

搞定

在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号