docker直接pull 的话着实有些慢,所以这里更新一下docker的国内数据源。即可使下载速度变快,我这里用阿里云的镜像,大家也可参考一下。
环境为centos7 —–配置文件路径:
vim /etc/docker/daemon.json
1 2 3 4 5 6 7 8 9 |
[root@localhost henryhzy]# vim /etc/docker/daemon.json # 创建或修改 /etc/docker/daemon.json 文件,修改为如下形式 { "registry-mirrors" : [ "https://registry.docker-cn.com", "https://docker.mirrors.ustc.edu.cn", "http://hub-mirror.c.163.com", "https://cr.console.aliyun.com/" ] } |
重新启动一下docker
1 2 3 |
systemctl daemon-reload systemctl restart docker |