参考:

https://blog.csdn.net/yzh648542313/article/details/139284563

国内镜像源

有效的镜像源

以下是一些常见的 Docker 国内镜像源:

网易云 Docker 镜像:http://hub-mirror.c.163.com

百度云 Docker 镜像:https://mirror.baidubce.com

腾讯云 Docker 镜像:https://ccr.ccs.tencentyun.com

Docker Proxy 镜像:https://dockerproxy.com

阿里云 Docker 镜像(需要使用阿里账号自行创建专属镜像仓库):https://cr.console.aliyun.com/

DaoCloud Docker 镜像(配置文档):http://f1361db2.m.daocloud.io

使用这些镜像源,可以加速 Docker 镜像的下载,提高使用体验。根据自己的需求和使用情况,可以选择其中一个或多个镜像源。需要注意的是,不同的镜像源可能包含的 Docker 镜像不同,因此在使用时需要注意确认所需的 Docker 镜像是否在镜像源中存在。

测试镜像源是否有效

docker pull hub-mirror.c.163.com/library/nginx:latest

docker pull mirror.baidubce.com/library/nginx:latest

docker pull ccr.ccs.tencentyun.com/library/nginx:latest

docker pull dockerproxy.com/library/nginx:latest

验证后发现ccr.ccs.tencentyun.com有效,配置:

vim /etc/docker/daemon.json

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

重启docker:

sudo systemctl restart docker