抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

由于国内政策原因,我们在使用Docker 拉取镜像的时候总是会失败,报错 docker拉取镜像失败,报错:error pulling image configuration: download failed after attempts=6: dial tcp 118.193.240.41:443: connect: connection refused

通常情况下,我们需要配置国内的加速地址,才能正常拉取成功。

因此,整理了一些可用的加速地址方便使用。

加速地址

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"registry-mirrors": [
"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"
]
}

使用方式

编辑daemon.json

1
vim /etc/docker/daemon.json

重启 Docker

1
systemctl daemon-reload && systemctl restart docker

评论