温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

在CentOS6.8下安装Docker

发布时间:2020-08-10 17:49:53 来源:ITPUB博客 阅读:157 作者:fengwuying121 栏目:编程语言

一、查看系统版本

[root@localhost opt]# uname -a Linux localhost.localdomain 2.6.32-642.el6.x86_64 #1 SMP Tue May 10 17:27:01 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost opt]# cat /etc/redhat-release CentOS release 6.8 (Final)

二、安装EPEL

因为系统自带的repo中不带docker需要安装epel

1 rpm -Uvh http://ftp.riken.jp/Linux/fedora/epel/6Server/x86_64/epel-release-6-8.noarch.rpm

  在CentOS6.8下安装Docker

 

三、安装Docker

yum install -y docker-io

  yum没有找到docker包,更新epel第三方软件库,运行命令:sudo yum install epel-release ,之后再执行:sudo yum install docker

四、开机自启动与启动Docker

1 [root@localhost opt]# service docker start2 Starting cgconfig service:                                 [  OK  ]3 Starting docker:                                       [  OK  ]
[root@localhost opt]# chkconfig docker on[root@localhost opt]# chkconfig docker --listdocker          0:off   1:off   2:on    3:on    4:on    5:on    6:off
至此docker已经安装完成.
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI