本文主要是介绍Docker设置ustc的镜像源(镜像加速器:修改/etc/docker/daemon.json文件),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、ustc简介
ustc是老牌的linux镜像服务提供者了,还在遥远的ubuntu 5.04版本的时候就在用。ustc的docker镜像加速器速度很快。ustc docker mirror的优势之一就是不需要注册,是真正的公共服务。
https://lug.ustc.edu.cn/wiki/mirrors/help/docker(Docker 镜像使用帮助文档)
2、设置ustc的镜像源
(1)在宿主系统
编辑或创建文件daemon.json
文件路径:/etc/docker/daemon.json (注:没有则创建。
)
[root@localhost ~]# mkdir -p /etc/docker
[root@localhost ~]#
[root@localhost ~]# vi /etc/docker/daemon.json
daemon.json中内容如下:
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
重新加载:
[root@localhost ~]# sudo systemctl daemon-reload
(2)重启docker
启动:
[root@localhost ~]# systemctl start docker
停止:
[root@localhost ~]# systemctl stop docker
重启:
[root@localhost ~]# systemctl restart docker
这篇关于Docker设置ustc的镜像源(镜像加速器:修改/etc/docker/daemon.json文件)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!