docker配置加速器,快速拉取镜像

巧了我就是萌 提交于 2020-01-14 23:53:05

由于docker拉取镜像比较慢,所以一般我们会配置docker的加速器地址,步骤如下:

1、进入/etc/docker目录

[root@localhost docker]# cd /etc/docker/

2、新建一个文件daemon.json

[root@localhost docker]# ls
key.json
[root@localhost docker]# touch daemon.json

3、配置加速器地址(该链接为中科大加速器地址,无需注册

[root@localhost docker]# vi daemon.json
{
"registry-mirrors":["https://docker.mirrors.ustc.edu.cn"]
}

4、重新加载服务配置文件

[root@localhost docker]# systemctl daemon-reload

5、重启docker

[root@localhost docker]# systemctl restart docker

6、拉取镜像

[root@localhost docker]# docker pull tomcat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!