1 安装docker 基础包
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最新版本(latest)
yum install docker-ce docker-ce-cli containerd.io
4 启动docker
systemctl start docker
5 测试docker
docker run hello-world
出现以下内容表示安装成功
6 停止docker
systemctl stop docker