yum install -y yum-utils device-mapper-persistent-data lvm2
安装所需的包
# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# 添加官方yum源,速度非常慢,不推荐,忽略
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
添加阿里yum源,速度飞快
yum makecache fast
把服务器的包信息下载到本地缓存起来
yum install docker-ce
安装最新版本的Docker CE(社区版)
按两次Y确认
systemctl start docker
启动Docker
systemctl enable docker
设置开机启动
使用阿里云镜像加速
https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
docker run hello-world
通过运行hello-world镜像验证安装是否正确
docker images hello-world
查看hello-world镜像信息
REPOSITORY:来自于哪个仓库
TAG:标签(镜像的发行版本)
IMAGE ID:ID(唯一)
CREATED:创建时间
SIZE:大小
docker version
查看docker版本信息
有Client和Server两部分表示docker安装启动都成功了
docker --version
查看docker版本
# sudo yum remove docker docker-common docker-selinux docker-engine
(彻底卸载)