为docker设置国内镜像
docker的默认镜像(https://hub.docker.com/)地址,拉取镜像时是比较慢的,经常会超时,有时拉取几个小时。为了加快拉取的时间和速度,需要添加中国的镜像地址1. 国内加速地址Docker中国区官方镜像https://registry.docker-cn.com网易http://hub-mirror.c.163.comustchttps://docke...
·
docker的默认镜像(https://hub.docker.com/)地址,拉取镜像时是比较慢的,经常会超时,有时拉取几个小时。为了加快拉取的时间和速度,需要添加中国的镜像地址
1. 国内加速地址
-
Docker中国区官方镜像
https://registry.docker-cn.com -
网易
http://hub-mirror.c.163.com -
ustc
https://docker.mirrors.ustc.edu.cn -
中国科技大学
https://docker.mirrors.ustc.edu.cn -
阿里云容器 服务
https://cr.console.aliyun.com/
首页点击“创建我的容器镜像” 得到一个专属的镜像加速地址,类似于“https://1234abcd.mirror.aliyuncs.com”
2.添加方式
2.1 添加"https://registry.docker-cn.com" 到 registry-mirrors 数组。
[root@localhost ~]# vim /etc/docker/daemon.json
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
[root@localhost ~]# systemctl restart docker.service
2.2 使用命令方式添加
[root@localhost ~]# dockerd --registry-mirror=https://registry.docker-cn.com
更多推荐
已为社区贡献1条内容
所有评论(0)