- Docker 中国区官方镜像:https://registry.docker-cn.com
- 中科大镜像源:https://docker.mirrors.ustc.edu.cn/
- 网易镜像源:http://hub-mirror.c.163.com/
- 腾讯镜像源:https://mirror.ccs.tencentyun.com
打开 Docker Desktop,在 Settings > Docker Engine 中,添加如下内容:
"registry-mirrors": [
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"http://hub-mirror.c.163.com"
]
别忘了在上一个条目的末尾加上逗号
,
修改完成后的配置如下:
使用 docker info
命令检查设置是否生效:
$ docker info
...
Insecure Registries:
hubproxy.docker.internal:5555
127.0.0.0/8
Registry Mirrors:
https://registry.docker-cn.com/
https://docker.mirrors.ustc.edu.cn/
http://hub-mirror.c.163.com/
Live Restore Enabled: false
看到 Registry Mirrors
条目下有我们设置的镜像源,说明镜像设置成功了。