centos7.4 在线安装docker18.09 作者:马育民 • 2021-08-28 12:28 • 阅读:10083 # 介绍 本文讲解 centos7.4 安装docker 依据官网文档安装: https://docs.docker.com/engine/install/centos/ # 更新 yum 包 ``` yum update ``` # 卸载 [centos7.4 卸载docker](https://www.malaoshi.top/show_1IX1l7UzJWDP.html "centos7.4 卸载docker") # 安装需要的软件包 ``` sudo yum install -y yum-utils ``` # 设置yum源 ### 官方(可能下载慢) ``` sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo ``` ### 阿里云(推荐) ``` sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo ``` # 安装最新版本(不推荐) ``` sudo yum install docker-ce docker-ce-cli containerd.io ``` # 安装指定版本(推荐) ### 列出稳定版本 ``` yum list docker-ce --showduplicates | sort -r ``` 显示如下: ``` 已加载插件:fastestmirror 可安装的软件包 * updates: mirrors.bupt.edu.cn Loading mirror speeds from cached hostfile * extras: mirrors.bfsu.edu.cn docker-ce.x86_64 3:20.10.8-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.7-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.6-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.5-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.4-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.3-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.2-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.1-3.el7 docker-ce-stable docker-ce.x86_64 3:20.10.0-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.9-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.8-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.7-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.6-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.5-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.4-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.3-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.2-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.15-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.14-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.1-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.13-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.12-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.11-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.10-3.el7 docker-ce-stable docker-ce.x86_64 3:19.03.0-3.el7 docker-ce-stable docker-ce.x86_64 3:18.09.9-3.el7 docker-ce-stable docker-ce.x86_64 3:18.09.8-3.el7 docker-ce-stable docker-ce.x86_64 3:18.09.7-3.el7 docker-ce-stable 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.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 docker-ce.x86_64 17.09.1.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.06.2.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.0.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.03.2.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.0.ce-1.el7.centos docker-ce-stable * base: mirrors.bfsu.edu.cn ``` # 版本选择 - 以 `3:` 开头的,会自动安装与之匹配的 **docker-ce-cli** 和 **containerd.io** - 不以 `3:` 开头的,版本较老,没有 这两个软件 所以推荐安装 `18.09.0-3.el7` 以上的版本 # 安装 指定版本号 ``` yum install docker-ce-18.09.0-3.el7 ``` 显示如下: [![](https://www.malaoshi.top/upload/pic/docker/QQ20210828164551.png)](https://www.malaoshi.top/upload/pic/docker/QQ20210828164551.png) 输入:`y` ,继续下载安装 # 启动 ``` sudo systemctl start docker ``` # 查看docker版本 ``` sudo docker version ``` # 安装测试 ``` sudo docker run hello-world ``` 执行结果如下: [![](https://www.malaoshi.top/upload/pic/linux/QQ20201228214852.png)](https://www.malaoshi.top/upload/pic/linux/QQ20201228214852.png) 原文出处:http://malaoshi.top/show_1IX1l7VS8fpQ.html