最后更新日期:2025-03-01 01:56:05
本文创建日期:2022-04-14 20:41:25
docker的默认镜像(https://hub.docker.com)地址,拉取镜像时是比较慢的,经常会超时,有时拉取几个小时。
为了加快拉取的时间和速度,需要添加中国的镜像地址
1. 国内加速地址
截至2025年3月1日更新测试可用:
https://docker.1ms.run https://docker.xuanyuan.me https://docker.m.daocloud.io https://proxy.1panel.live
以下地址均已失效(2025年3月1日更新):
Docker中国区官方镜像 https://registry.docker-cn.com
网易 http://hub-mirror.c.163.com
ustc https://docker.mirrors.ustc.edu.cn
中国科技大学 https://docker.mirrors.ustc.edu.cn
阿里云容器 服务 https://cr.console.aliyun.com/首页点击“创建我的容器镜像” 得到一个专属的镜像加速地址,类似于“https://1234abcd.mirror.aliyuncs.com”
2. 添加方式
2.1 添加到 registry-mirrors 数组(推荐)
Ubuntu 命令行配置
[root@localhost ~]# vi /etc/docker/daemon.json { "registry-mirrors": [ "https://docker.1ms.run", "https://docker.xuanyuan.me", "https://docker.m.daocloud.io" ] } [root@localhost ~]# systemctl restart docker.service
Windows Docker Desktop 配置
Docker Desktop 右上角设置 → Docker Engine → json 添加如下内容:
{ "registry-mirrors": [ "https://docker.1ms.run", "https://docker.xuanyuan.me", "https://docker.m.daocloud.io" ] }
2.2 使用命令方式添加(不推荐)
[root@localhost ~]# dockerd --registry-mirror=https://proxy.1panel.live --registry-mirror=https://docker.m.daocloud.io
此方法仅在当前会话中生效,若需持久化配置,仍需通过修改 Docker 配置文件实现。且这种方式会覆盖已有的镜像源配置,仅保留命令行中指定的地址。
感谢:https://docker.xuanyuan.me/
本站文章除注明转载/出处外,均为原创,若要转载请务必注明出处。转载后请将转载链接通过邮件告知我站,谢谢合作。本站邮箱:admin@only4.work
尊重他人劳动成果,共创和谐网络环境。点击版权声明查看本站相关条款。