保持更新:中国大陆可用的公共免费Docker镜像加速器

Work Jul 30, 2025

由于 Docker Hub 等镜像源被中国大陆地区限制,本站收集了一些免费的公共 Docker Hub 加速器,欢迎试用。(文末附镜像加速器使用方式)

目前可用的公共加速器

毫秒镜像

官方网站:https://1ms.run/

注意⚠️:该组织声明“仅支持合法镜像”,或许不能提供完整的镜像服务,请仔细评估。

付费版 4.9 元 50 GB 高速流量起。

  • 免费版:https://docker.1ms.run

    免费支持的镜像源:docker.io、ghcr.io

  • 付费版:https://docker.1ms.run

    付费支持的镜像源:docker.io、ghcr.io、gcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co

轩辕镜像

官方网站:https://docker.xuanyuan.me

付费版 5 元 50 GB 高速流量起。

已阵亡的公共加速器

只是无法被公共访问,可能在指定专有网络(VPS)能用,在这里不被纳入统计。

Docker Proxy

官方网站:https://dockerproxy.net

  • 免费版:https://dockerproxy.net

    免费版支持的镜像源:docker.io、ghcr.io、gcr.io、registry.k8s.io、quay.io、mcr.microsoft.com

网易镜像加速器

https://hub-mirror.c.163.com

DaoCloud 镜像站

https://docker.m.daocloud.io

Azure 中国镜像

https://dockerhub.azk8s.cn

中科院镜像站

https://mirror.iscas.ac.cn

南京大学镜像站

https://docker.nju.edu.cn

七牛云镜像站

https://reg-mirror.qiniu.com

科大镜像站

https://docker.mirrors.ustc.edu.cn

加速器配置与启用

  1. 修改 /etc/docker/daemon.json 文件,增加 registry-mirrors 片段。

    {
      "registry-mirrors": ["https://dockerproxy.net"]
    }
    
  2. 重启 docker 守护进程

    systemctl restart docker
    
  3. 下载镜像

    docker pull openjdk:8-jdk
    

标签