docker设置国内镜像源

一、国内加速地址

1、阿里云镜像站:(需登录,免费)

复制代码
https://<your_code>.mirror.aliyuncs.com

2、网易云镜像站:

复制代码
http://hub-mirror.c.163.com

3、百度云镜像站:

复制代码
https://mirror.baidubce.com

4、上海交大镜像站:

复制代码
https://docker.mirrors.sjtug.sjtu.edu.cn

5、南京大学镜像站:

复制代码
https://docker.nju.edu.cn		

以下连接不公开或已失效:

1、Docker 中国官方镜像:(已关闭)

https://registry.docker-cn.com

2、中国科技大学 USTC:(仅供内部访问)
https://docker.mirrors.ustc.edu.cn

阿里云容器 生成自己的加速地址

登录:cr.console.aliyun.com

点击"创建我的容器镜像",得到专属加速地址。

二、修改方法

创建或修改 /etc/docker/daemon.json 文件,修改为如下形式

复制代码
{
    "registry-mirrors": [
        "https://registry.hub.docker.com",
        "http://hub-mirror.c.163.com",
        "https://mirror.baidubce.com",
        "https://docker.mirrors.sjtug.sjtu.edu.cn",
        "https://docker.nju.edu.cn"
    ]
}

加载重启docker

复制代码
systemctl restart docker

查看是否成功

复制代码
docker info

Docker Hub 镜像测速

复制代码
# 测速前先移除本地的镜像!
$ docker rmi nginx:latest

# 使用 time 统计所花费的总时间。
$ time docker pull nginx:latest

Pulling repository nginx
[...]

real   1m14.078s
user   0m0.176s
sys    0m0.120s

三、从指定repo拉取镜像

命令格式: library/<image:version>

复制代码
$ docker pull busybox 

# 指定Repo拉取镜像,等价于:
$ docker pull hub-mirror.c.163.com/library/busybox:latest
$ docker pull docker.io/library/busybox:latest
$ docker pull registry.hub.docker.com/library/busybox:latest

-ref
docker 设置国内镜像源_docker国内镜像源-CSDN博客

相关推荐
天上掉下来个程小白9 小时前
Docker-14.项目部署-DockerCompose
运维·docker·微服务·容器
星霜笔记13 小时前
Docker 部署 MariaDB+phpMyAdmin+Nextcloud 完整教程
运维·数据库·docker·容器·mariadb
数据知道16 小时前
容器化部署:用Docker封装机器翻译模型与服务详解
docker·容器·机器翻译
敲上瘾1 天前
Linux系统cgroups资源精细化控制基础
linux·测试工具·docker·压力测试·cgroups
伊成1 天前
Docker 部署 Nginx 完整指南
nginx·docker·容器
落日漫游1 天前
K8s核心组件全解析
运维·docker·运维开发
江湖有缘1 天前
【Docker项目实战】使用Docker部署Notepad轻量级记事本
docker·容器·notepad++
BTU_YC1 天前
docker compose部署mysql
mysql·adb·docker
Python私教1 天前
Docker in Test:用一次性的真实环境,终结“测试永远跑不通”魔咒
运维·docker·容器
UPToZ1 天前
【Docker】搭建一个高性能的分布式对象存储服务 - MinIO
分布式·docker·容器