码迷,mamicode.com
首页 > 其他好文 > 详细

Docker安装与卸载

时间:2021-06-24 18:31:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:config   pos   docker   软件   roo   cal   less   cat   查看   

 1 #查询可安装版本
 2 [root@localhost ~]# yum list docker-ce --showduplicates | sort -r
 3 Repository extras is listed more than once in the configuration
 4 docker-ce.x86_64                3:20.10.7-3.el8                 docker-ce-stable
 5 docker-ce.x86_64                3:20.10.6-3.el8                 docker-ce-stable
 6 docker-ce.x86_64                3:20.10.5-3.el8                 docker-ce-stable
 7 docker-ce.x86_64                3:20.10.4-3.el8                 docker-ce-stable
 8 docker-ce.x86_64                3:20.10.3-3.el8                 docker-ce-stable
 9 docker-ce.x86_64                3:20.10.2-3.el8                 docker-ce-stable
10 docker-ce.x86_64                3:20.10.1-3.el8                 docker-ce-stable
11 docker-ce.x86_64                3:20.10.0-3.el8                 docker-ce-stable
12 docker-ce.x86_64                3:19.03.15-3.el8                docker-ce-stable
13 docker-ce.x86_64                3:19.03.14-3.el8                docker-ce-stable
14 docker-ce.x86_64                3:19.03.13-3.el8                docker-ce-stable
15 上次元数据过期检查:0:22:09 前,执行于 2021年06月24日 星期四 10时24分40秒。
16 可安装的软件包
17 #安装
18 [root@localhost ~]# yum install -y docker-ce.x86_64
19 [root@localhost ~]# docker --version
20 Docker version 20.10.7, build f0df350
21 
22 
23 #查询已安装的Docker包
24 [root@localhost ~]# yum list installed | grep docker
25 Repository extras is listed more than once in the configuration
26 containerd.io.x86_64                 1.4.6-3.1.el8                           @docker-ce-stable
27 docker-ce.x86_64                     3:20.10.6-3.el8                         @docker-ce-stable
28 docker-ce-cli.x86_64                 1:20.10.7-3.el8                         @docker-ce-stable
29 docker-ce-rootless-extras.x86_64     20.10.7-3.el8                           @docker-ce-stable
30 docker-scan-plugin.x86_64            0.8.0-3.el8                             @docker-ce-stable
31 #卸载Docker-ce
32 [root@localhost ~]# yum remove -y docker-ce
33 #删除docker目录
34 [root@localhost ~]# rm -rf /var/lib/docker /var/run/docker
35 #查看是否删除干净
36 [root@localhost ~]# yum list installed | grep docker
37 Repository extras is listed more than once in the configuration

 

Docker安装与卸载

标签:config   pos   docker   软件   roo   cal   less   cat   查看   

原文地址:https://www.cnblogs.com/grover/p/14926896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!