当前位置:   article > 正文

docker pull image 报错 i/o timeout_docker pull timeout

docker pull timeout

参考学习:
docker pull image 报错 dial tcp 31.13.88.169:443: i/o timeout_docker pull 失败-CSDN博客

一、错误复现

error pulling image configuration: download failed after attempts=6: dial tcp 31.13.88.169:443: i/o timeout

在执行docker build构建镜像,拉取镜像时报错
在这里插入图片描述

或者直接docker pull镜像时报错
在这里插入图片描述


实质都是拉取镜像源超时报错,那么就是镜像源的问题

二、解决方法

1、配置镜像源

vim /etc/docker/daemon.json
  • 1

输入以下内容

{
	"registry-mirrors":[
		"https://i1el1i0w.mirror.aliyuncs.com",
		"https://hub-mirror.c.163.com",
		"https://registry.aliyuncs.com",
		"https://registry.docker-cn.com",
		"https://docker.mirrors.ustc.edu.cn"
	]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

或者直接使用tee命令添加(二选一即可)

sudo tee /etc/docker/daemon.json <<-'EOF'
{
	"registry-mirrors":[
		"https://i1el1i0w.mirror.aliyuncs.com",
		"https://hub-mirror.c.163.com",
		"https://registry.aliyuncs.com",
		"https://registry.docker-cn.com",
		"https://docker.mirrors.ustc.edu.cn"
	]
}
EOF
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

2、重启docker服务

重启守护进程

sudo systemctl daemon-reload
  • 1

重启服务

sudo systemctl restart docker
  • 1

再次尝试成功了

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

闽ICP备14008679号