yum安装gcc
yum -y install gcc
yum -y install gcc-c++
卸载旧版本 (没有可忽略)
yum -y remove docker docker-common docker-selinux docker-engine
安装需要的软件包
yum install -y yum-utils device-mapper-persistent-data lvm2
设置stable镜像仓库
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
更新yum软件包索引
yum makecache fast
安装DOCKER CE
yum -y install docker-ce
启动docker
systemctl start docker
查看版本
docker version
配置镜像加速
创建文件夹
mkdir -p /etc/docker
新建
vim /etc/docker/daemon.json
阿里云镜像加速说明:https://help.aliyun.com/document_detail/60750.html
登录之后
加载配置
systemctl daemon-reload
重启docker
systemctl restart docker
卸载
systemctl stop docker yum -y remove docker-ce rm -rf /var/lib/docker