DockerHub国内镜像源列表

2024-08-20 13:59:59 浏览数 (1)

此列表只收录无需限定条件的DockerHub镜像源,感谢这些公益服务者。

【拉库代理】 搭建教程https://github.com/hunshcn/gh-proxy 部分拉库代理,收集自群友及网络,可用性自测:

代码语言:javascript复制
http://gh.shgdym.xyz/
https://gh.qninq.cn/
https://ghproxy.com/
https://git.jul.la
https://gh.301.ee/
https://gh.kkdy.link/
https://gh.whjpd.top/gh/

【Docker镜像加速地址】

代码语言:javascript复制
https://docker.registry.cyou
https://docker-cf.registry.cyou
https://dockerpull.com
https://dockerproxy.cn
https://docker.1panel.live
https://hub.rat.dev
https://docker.anyhub.us.kg
https://docker.chenby.cn
https://dockerhub.icu
https://docker.awsl9527.cn
https://dhub.kubesre.xyz
https://docker.hlyun.org
https://docker.m.daocloud.io

部署自己的镜像站:https://github.com/cmliu/CF-Workers-docker.io

使用教程

1、为了加速镜像拉取,使用以下命令设置registry mirror

代码语言:javascript复制
支持系统:Ubuntu 16.04 、Debian 8 、CentOS 7 
代码语言:javascript复制
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<EOF
{
    "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"
    ]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

2、使用DockerHub Proxy,以下以 hub.uuuadc.top 为例:可以根据列表自行替换

代码语言:javascript复制
docker pull hub.uuuadc.top/library/mysql:5.7

说明:library是一个特殊的命名空间,它代表的是官方镜像。如果是某个用户的镜像就把library替换为镜像的用户名

0 人点赞