Rumah > Artikel > Operasi dan penyelenggaraan > docker添加国内镜像
使用过docker的同学都知道,docker的默认镜像地址在拉取镜像时是非常慢的,甚至会超时。为了解决这个问题,我们可以添加国内镜像地址。
(学习视频分享:编程视频)
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
相关推荐:docker教程
Atas ialah kandungan terperinci docker添加国内镜像. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!