docker pull 相关配置

bash 复制代码
cat /etc/docker/daemon.json 
bash 复制代码
{
    "max-concurrent-downloads": 30,
    "max-download-attempts": 10,
}

参数解释:

"max-concurrent-downloads":30, 最多一次性拉取 30 层

"max-download-attempts": 10, 最多重试10次

从 /var/log/syslog 日志可知,dokcer 拉取某层失败会重试,默认重试次数为 5 ,"max-download-attempts": 10, 可以将失败重试次数改为 10

bash 复制代码
Jan  8 14:36:37 m4 dockerd[112390]: time="2024-01-08T14:36:37.144264291+08:00" level=info msg="Download failed, retrying (1/10): unexpected EOF"
Jan  8 14:41:09 m4 dockerd[112390]: time="2024-01-08T14:41:09.315140436+08:00" level=info msg="Download failed, retrying (2/10): unexpected EOF"
Jan  8 14:50:12 m4 dockerd[112390]: time="2024-01-08T14:50:12.149905672+08:00" level=info msg="Download failed, retrying (3/10): unexpected EOF"
Jan  8 14:54:55 m4 dockerd[112390]: time="2024-01-08T14:54:55.540293984+08:00" level=info msg="Download failed, retrying (4/10): unexpected EOF"
Jan  8 15:04:09 m4 dockerd[112390]: time="2024-01-08T15:04:09.474033826+08:00" level=info msg="Download failed, retrying (5/10): unexpected EOF"
相关推荐
恩爸编程13 分钟前
探索 Nginx:Web 世界的幕后英雄
运维·nginx·nginx反向代理·nginx是什么·nginx静态资源服务器·nginx服务器·nginx解决哪些问题
鸠摩智首席音效师1 小时前
Docker 中如何限制CPU和内存的使用 ?
docker·容器
Michaelwubo1 小时前
Docker dockerfile镜像编码 centos7
运维·docker·容器
jingyu飞鸟1 小时前
centos-stream9系统安装docker
linux·docker·centos
好像是个likun2 小时前
使用docker拉取镜像很慢或者总是超时的问题
运维·docker·容器
玖疯子4 小时前
介绍 Docker 的基本概念和优势,以及在应用程序开发中的实际应用。
docker
暴富的Tdy4 小时前
【快速上手Docker 简单配置方法】
docker·容器·eureka
cominglately4 小时前
centos单机部署seata
linux·运维·centos
CircleMouse5 小时前
Centos7, 使用yum工具,出现 Could not resolve host: mirrorlist.centos.org
linux·运维·服务器·centos
Karoku0665 小时前
【k8s集群应用】kubeadm1.20高可用部署(3master)
运维·docker·云原生·容器·kubernetes