卸载docker
yum remove docker-*
#查看安装过的包
yum list installed | grep docker
#删除包
yum -y remove docker.x86_64
安装docker
#查看内核版本(docker要求centos系统的内核版本高于3.10)
uname -r
#更新yum包
yum update
#安装yum-utils
yum install -y yum -utils device-mapper-persistent-data lvm2
#为yum源添加docker仓库位置(由于国内的访问不到官方的,使用aliyun的)
##docker官方镜像
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
##aliyun的源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
#查看仓库的docker版本
yum list docker-ce --showduplicates | sort -r
#安装docker
yum install docker-ce
#启动docker(启动不成功,重启下服务器)
systemctl start docker
#设置开机启动
systemctl enable docker
#关闭docker
systemctl stop docker
#查看版本
docker version
#检查是否成功,可以使用search
docker search mysql
#查看日志状态
systemctl status docker.service
#验证是否安装成功(如果没有hello-world镜像,执行命令会自动下载)
docker run hello-world