1.卸载旧版本 docker
yum remove docker docker-common docker-selinux dockesr-engine -y
2.升级系统软件
yum upgrade -y
3.安装必要的一些系统工具
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
4.添加软件源信息
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5.更新并安装 docker-ce
yum makecache fast
yum install docker-ce -y
6.启动服务
systemctl daemon-reload
systemctl restart docker