1、将Docker镜像源,更换为阿里镜像源
# 1、 安装必要的一些系统工具 yum install -y yum-utils device-mapper-persistent-data lvm2 # 2、 添加软件源信息 yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo # 3、更新并安装Docker-CE yum makecache fast yum -y install docker-ce # 4、开启Docker服务 service docker start |
2、Docker加速器(一般可以不使用,因为跟换为阿里镜像源,下载的速度已经很快)
# 1、添加镜像加速器的文件 vim /etc/docker/daemon.json { "registry-mirrors":[ "https://kfwkfulq.mirror.aliyuncs.com", "https://2lqq34jg.mirror.aliyuncs.com", "https://pee6w651.mirror.aliyuncs.com", "http://hub-mirror.c.163.com", "https://docker.mirrors.ustc.edu.cn", "https://registry.docker-cn.com" ] } # 2、加载配置文件 systemctl daemon-reload # 3、重启docker的服务 systemctl restart docker |