博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在CentOS6.8下安装Docker
阅读量:6113 次
发布时间:2019-06-21

本文共 834 字,大约阅读时间需要 2 分钟。

在CentOS6.8下安装Docker

一、查看系统版本

[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

 

 

 

三、安装Docker

yum install -y docker-io

 

四、开机自启动与启动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已经安装完成.

 

转载于:https://www.cnblogs.com/hoojjack/p/8629378.html

你可能感兴趣的文章
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
网易跟贴这么火,背后的某个力量不可忽视
查看>>
企业级java springboot b2bc商城系统开源源码二次开发-hystrix参数详解(八)
查看>>
java B2B2C 多租户电子商城系统- 整合企业架构的技术点
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
mysql的innodb中事务日志(redo log)ib_logfile
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>
C 函数sscanf()的用法
查看>>
python模块之hashlib: md5和sha算法
查看>>