一、安装Docker的依赖环境
yum -y install yum-utils device-mapper-persistent-data lvm2
二、设置下载的镜像源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
三、安装Docker
yum makacache fast yum -y install docker-ce
四、启动Docker服务
systemctl start docker #启动docker服务 systemctl enable docker #设置docker为开机启动
五、测试
docker run hello-world
安装成功!