Centos7 安装指定版本的 Docker
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 安装指定版本的 Docker相关的知识,希望对你有一定的参考价值。
Centos 安装指定版本的 Docker安装kubernetes 集群,个别kubernetes对docke版本有要求,简单整理安装指定版本docker过程如下:
kubernetes 版本依赖确认:
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#external-dependencies
删除现有版本 docker 版本
yum remove docker-ce docker-ce-selinux container-selinux docker docker-ce-cli -y
查询可用版本
yum list docker-ce --showduplicates | sort -r
[[email protected] ~]# yum list docker-ce --showduplicates | sort -r
* updates: mirrors.njupt.edu.cn
Loading mirror speeds from cached hostfile
Loaded plugins: fastestmirror
Installed Packages
* extras: ftp.cuhk.edu.hk
* epel: mirrors.aliyun.com
* elrepo: mirrors.tuna.tsinghua.edu.cn
docker-ce.x86_64 3:18.09.6-3.el7 docker-ce-stable
docker-ce.x86_64 3:18.09.5-3.el7 docker-ce-stable
docker-ce.x86_64 3:18.09.4-3.el7 docker-ce-stable
docker-ce.x86_64 3:18.09.3-3.el7 docker-ce-stable
docker-ce.x86_64 3:18.09.2-3.el7 docker-ce-stable
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.3.ce-3.el7 docker-ce-stable
docker-ce.x86_64 18.06.2.ce-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
docker-ce.x86_64 18.03.1.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 18.03.1.ce-1.el7.centos @docker-ce-stable
docker-ce.x86_64 18.03.0.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.12.1.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.12.0.ce-1.el7.centos docker-ce-stable
................
安装指定版本
yum install docker-ce-18.03.1.ce-1.el7.centos -y
安装结果验证
docker --version
Docker version 18.03.1-ce, build 9ee9f40
以上是关于Centos7 安装指定版本的 Docker的主要内容,如果未能解决你的问题,请参考以下文章