Docker 配置镜像加速
常用镜像加速
使用 Docker 镜像加速器可以显著提高镜像拉取速度,特别是在国内使用 Docker 时。
以下是一些常见的 Docker 镜像加速器:
shell
https://docker.mirrors.ustc.edu.cn/
1
shell
https://hub-mirror.c.163.com/
1
shell
https://`<your-accelerator-id>`.mirror.aliyuncs.com
1
shell
https://mirror.ccs.tencentyun.com
1
shell
https://repo.huaweicloud.com
1
shell
https://reg-mirror.qiniu.com
1
配置镜像加速
编辑或创建 /etc/docker/daemon.json 文件,添加以下内容:
shell
{
"registry-mirrors": ["https://mirror.ccs.tencentyun.com"]
}
1
2
3
2
3
修改配置文件后,需要重启 Docker 服务使配置生效:
shell
sudo systemctl daemon-reload
sudo systemctl restart docker
1
2
2