不到断气不罢休 发表于 2024-10-19 19:43:37

docker pull命令拉取镜像失败的办理方案

docker pull命令拉取镜像失败的办理方案

一、实验docker pull命令,拉取镜像失败

报错信息:error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/51/5107333e08a87b836d48ff7528b1e84b9c86781cc9f1748bbc1b8c42a870d933/data?verify=1725414357-z%2BnaVrrs0%2Fi0D3ixKDH8JHhJgUQ%3D: dial tcp 88.191.249.182:443: i/o timeout
# docker pull mysql:5.7
5.7: Pulling from library/mysql
20e4dcae4c69: Pulling fs layer
1c56c3d4ce74: Pulling fs layer
e9f03a1c24ce: Pulling fs layer
68c3898c2015: Waiting
6b95a940e7b6: Waiting
90986bb8de6e: Waiting
ae71319cb779: Waiting
ffc89e9dfd88: Waiting
43d05e938198: Waiting
064b2d298fba: Waiting
df9a4d85569b: Waiting
error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/51/5107333e08a87b836d48ff7528b1e84b9c86781cc9f1748bbc1b8c42a870d933/data?verify=1725414357-z%2BnaVrrs0%2Fi0D3ixKDH8JHhJgUQ%3D: dial tcp 88.191.249.182:443: i/o timeout

https://i-blog.csdnimg.cn/direct/ada5980247e6471aa6050fdf23c43859.png
二、办理方案

办理的步骤如下:
1. 打开daemon.json文件
vim /etc/docker/daemon.json
2. 将其镜像地址举行替换
{
"registry-mirrors": [
    "https://docker.m.daocloud.io",
    "https://dockerproxy.com",
    "https://registry.docker-cn.com",
    "https://docker.mirrors.ustc.edu.cn",
    "https://hub-mirror.c.163.com",
    "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://mirror.baidubce.com"
]
}
三、重启docker服务
systemctl daemon-reload
systemctl restart docker

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: docker pull命令拉取镜像失败的办理方案