1. 安装
首先卸载Docker旧版本及相关依赖
yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine
安装Docker之前,需要设置Docker仓库,在设置仓库之前,我们先安装所需的软件包
yum install -y yum-utils device-mapper-persistent-data lvm2
下面设置Docker仓库,我们可以从仓库安装和更新Docker
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
删除缓存数据
yum clean all yum makecache fast
安装docker-ce,即Docker社区版,这里我安装的是19.03.6版本
yum -y install docker-ce-19.03.6
启动docker服务
systemctl start docker
查看docker服务状态
systemctl status docker
设置Docker服务开机自启动
systemctl enable docker
2.测试
查看Docker版本
docker version
3.运行第一个Docker容器
通过运行 hello-world 镜像
docker run hello-world
出现以下信息则表示第一个Docker容器运行成功
4.阿里云加速器
如果你觉得镜像下载速度过慢,可以使用使用阿里云的给每个用户免费的专属加速器
https://www.aliyun.com