docker pull拉取失败: error pulling image configuration: download failed after attempts=6:xxx timeout
MiracleStep 2024-08-09 14:37:01 阅读 80
解决方法:
配置镜像源。(属于是把能加的都加上了,此处没有阿里镜像源)
<code>sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<EOF
{
"registry-mirrors": [
"https://hub.uuuadc.top",
"https://docker.anyhub.us.kg",
"https://dockerhub.jobcher.com",
"https://dockerhub.icu",
"https://docker.ckyl.me",
"https://docker.awsl9527.cn",
"https://dockerproxy.com",
"https://docker.mirrors.ustc.edu.cn",
"https://docker.nju.edu.cn"
]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
要添加阿里源请参考:
Docker配置国内镜像源(阿里源)
如果还是不能解决,请参考:
Docker Hub 镜像加速器
上一篇: AI:214-改进YOLOv8目标检测网络 | 引入注意力机制、优化C2f、卷积层、Neck和检测头的综合提升
本文标签
docker pull拉取失败: error pulling image configuration: download failed after attempts=6:xxx timeout
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。