yum install -y yum-utils
yum-config-manager \--add-repo\ https://download.docker.com/linux/centos/docker-ce.repo
--默认是国外的
yum-config-manager \--add-repo\http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum makecache fast
yum install docker-ce docker-ce-cli containerd.io
#安装,可能会出错,多试几次
systemctl start docker
#启动
docker --version
#查看docker 是否安装完成
docker run hello-world
#初次自动下载镜像