Centos7.5 如何在线安装Docker18.06.3
Posted 玩电脑的辣条哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7.5 如何在线安装Docker18.06.3相关的知识,希望对你有一定的参考价值。
环境:
Centos7.5
docker Version: 18.06.3
问题描述:
Centos7.5 如何在线安装docker18.06.3
解决方案:
1、切换镜像源
[root@f ~]# wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo
2、查看当前镜像源中支持的docker版本
[root@f ~]# yum list docker-ce --showduplicates
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirrors.163.com
* extras: mirrors.163.com
* updates: mirrors.163.com
已安装的软件包
docker-ce.x86_64 3:20.10.14-3.el7 @docker-ce-stable
可安装的软件包
docker-ce.x86_64 17.03.0.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.03.1.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.03.2.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.03.3.ce-1.el7 docker-ce-stable
docker-ce.x86_64 17.06.0.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.06.1.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.06.2.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.09.0.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.09.1.ce-1.el7.centos docker-ce-stable
docker-ce.x86_64 17.12.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 18.03.0.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.06.0.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.2.ce-3.el7 docker-ce-stable
docker-ce.x86_64 18.06.3.ce-3.el7 docker-ce-stable
3、安装特定版本的docker-ce
必须制定–setopt=obsoletes=0,否则yum会自动安装更高版本
[root@f ~]# yum install --setopt=obsoletes=0 docker-ce-18.06.3.ce-3.el7 -y
如果要安装新版yum install docker
4、启动dokcer
[root@f ~]# systemctl restart docker
[root@f ~]# systemctl enable docker
以上是关于Centos7.5 如何在线安装Docker18.06.3的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu18.04在线安装dockernvidia-docker2与docker-compos
Centos7.5安装docker(yum安装rm安装脚本安装docker)