centos7安装docker

第一步:进入进行配置目录

cd /etc/yum.repos.d

第二步:下载镜像repo

wget https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

第三步:vi docker-ce.repo 

第四步: 在打开的docker-ce.repo文件文件中,将镜像地址替换

:%s@https://download.docker.com/@https://mirrors.tuna.tsinghua.edu.cn/docker-ce/

第五步:yum install docker-ce

第六步:配置docker镜像加速

1、mkdir /etc/docker

2、linux环境: vi /etc/docker/daemon.json  mac环境:~/.docker/daemon.json

{

"registry-mirrors": ["https://fzhifedh.mirror.aliyuncs.com","https://hub.daocloud.io","http://hub-mirror.c.163.com","https://registry.docker-cn.com"]

}

第七步:systemctl start docker.service

你可能感兴趣的:(centos7安装docker)