跳到主要内容

Docker 更换镜像源阿里科大网易腾讯中科大微软官方

· 阅读需 2 分钟
素明诚
Full stack development

编辑 Docker 配置文件: 打开或创建 /etc/docker/daemon.json 文件

{
"registry-mirrors": [
"https://registry.docker-cn.com",
"http://hub-mirror.c.163.com",
"https://docker.mirrors.ustc.edu.cn",
"https://dockerhub.azk8s.cn",
"https://mirror.ccs.tencentyun.com",
"https://registry.cn-hangzhou.aliyuncs.com",
"https://docker.mirrors.ustc.edu.cn"
]
}

重启 Docker 服务: 为使配置生效,请执行以下命令:

sudo systemctl daemon-reload
sudo systemctl restart docker

原地址

Docker 官方镜像加速器(中国区)

  • 地址: https://registry.docker-cn.com

网易云镜像加速器

  • 地址: http://hub-mirror.c.163.com

科大讯飞开源镜像加速器

  • 地址: https://docker.mirrors.ustc.edu.cn

Azure 中国镜像加速器

  • 地址: https://dockerhub.azk8s.cn

腾讯云公共镜像库

  • 地址: https://mirror.ccs.tencentyun.com

阿里云公共镜像加速器

  • 地址: https://registry.cn-hangzhou.aliyuncs.com

中国科学技术大学镜像加速器

  • 地址: https://docker.mirrors.ustc.edu.cn

2024 年 8 月 2 日 09:14:06 更新

如果上面的 G 了,可以试试下面这些

{
"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"
]
}

2024 年 8 月 12 日 15:32:23 更新

镜像源失效的问题,通常有以下几种长期解决方案

使用阿里云+GitHub 构建镜像

这个网上有很多教程,就细说了

本机配置代理 (推荐)

可以封装一下 clash,容器启动,方便管理

搭建私有容器镜像仓库(如 Harbor)

Harbor 是一个开源的企业级容器镜像仓库,提供了镜像管理、访问控制、安全扫描等功能。搭建私有仓库可以方便团队内部的镜像下载和同步,同时也需要配置相应的代理以加速访问。