- 安装yum包管理工具
yum install -y yum-utils device-mapper-persistent-data lvm2 --skip-broken
- 更新本地镜像源
# 设置docker镜像源
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
sed -i 's/download.docker.com/mirrors.aliyun.com\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
yum makecache fast
- 安装docker社区版
yum install -y docker-ce
- 启动docker,启动之前需要关注防火墙是否关闭
#如果关闭没有关闭,执行停止防火墙命令
systemctl stop firewalld
# 禁止开机启动防火墙
systemctl disable firewalld
#查看是否关闭防火墙
systemctl status firewalld
5.启动docker
# 启动docker服务
systemctl start docker
(成功启动截图)