安装
安装准备
为了方便添加软件源,支持 devicemapper 存储类型,安装如下软件包
sudo yum update
sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
添加 yum 软件源
添加 Docker 稳定版本的 yum 软件源
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
安装 Docker
更新一下 yum 软件源的缓存,并安装 Docker。
sudo yum update
sudo yum install docker-ce
这里可能会报错:
Error: Package: containerd.io-1.2.10-3.2.el7.x86_64 (docker-ce-stable)
Requires: container-selinux >= 2:2.74
Installed: 2:container-selinux-2.9-4.el7.noarch (installed)
container-selinux = 2:2.9-4.el7
Error: Package: 3:docker-ce-19.03.6-3.el7.x86_64 (docker-ce-stable)
Requires: container-selinux >= 2:2.74
Installed: 2:container-selinux-2.9-4.el7.noarch (installed)
container-selinux = 2:2.9-4.el7
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
解决
yum install http://vault.centos.org/centos/7.3.1611/extras/x86_64/Packages/container-selinux-2.9-4.el7.noarch.rpm
如果弹出 GPG key 的接收提示,请确认是否为 060a 61c5 1b55 8a7f 742b 77aa c52f eb6b 621e 9f35,如果是,可以接受并继续安装。
至此,Docker 已经安装完成了,Docker 服务是没有启动的,操作系统里的 docker 组被创建,但是没有用户在这个组里。
注意
默认的 docker 组是没有用户的(也就是说需要使用 sudo 才能使用 docker 命令)。
您可以将用户添加到 docker 组中(此用户就可以直接使用 docker 命令了)。
加入 docker 用户组命令
sudo usermod -aG docker USER_NAME
用户更新组信息后,重新登录系统即可生效。
安装指定版本
如果想安装指定版本的 Docker,可以查看一下版本并安装。
yum list docker-ce --showduplicates | sort -r
docker-ce.x86_64 3:18.09.1-3.el7 docker-ce-stable
docker-ce.x86_64 3:18.09.0-3.el7 docker-ce-stable
docker-ce.x86_64 18.06.1.ce-3.el7 docker-ce-stable
docker-ce.x86_64 18.06.0.ce-3.el7 docker-ce-stable
可以指定版本安装,版本号可以忽略 : 和 el7,如 docker-ce-18.09.1
sudo yum install docker-ce-<VERSION STRING>
至此,指定版本的 Docker 也安装完成,同样,操作系统内 docker 服务没有启动,只创建了 docker 组,而且组里没有用户。
启动 Docker
如果想添加到开机启动
sudo systemctl enable docker
启动 docker 服务
sudo systemctl start docker
验证安装
验证 Docker CE 安装是否正确,可以运行 hello-world 镜像
sudo docker run hello-world
更新和卸载 Docker
使用 yum 管理,更新和卸载都很方便。
更新 Docker CE
sudo yum update docker-ce
卸载 Docker CE
sudo yum remove docker-ce
删除本地文件
注意,docker 的本地文件,包括镜像(images), 容器(containers), 存储卷(volumes)等,都需要手工删除。默认目录存储在 /var/lib/docker。
sudo rm -rf /var/lib/docker
原文地址
https://qizhanming.com/blog/2019/01/25/how-to-install-docker-ce-on-centos-7