CentOS Docker 安装
Docker支持以下的CentOS版本:
CentOS 7 (64-bit)
CentOS 6.5 (64-bit) 或更高的版本
前提条件
目前,CentOS 仅发行版本中的内核支持 Docker。
Docker 运行在 CentOS 7 上,要求系统为64位、系统内核版本为 3.10 以上。
Docker 运行在 CentOS-6.5 或更高的版本的 CentOS 上,要求系统为64位、系统内核版本为 2.6.32-431 或者更高版本。
查看自己的内核
uname命令用于打印当前系统相关信息(内核版本号、硬件架构、主机名称和操作系统类型等)。
查看已安装的CentOS版本信息(CentOS6.8有,CentOS7无该命令)
我的系统版本是6.5的 ---------------------------------------------------------------------------------------------------------------------------------
1、 yum install -y epel-release
2、yum install -y docker-io
我的centos报错:
已加载插件:fastestmirror, refresh-packagekit, security
设置安装进程
Loading mirror speeds from cached hostfile
错误:Cannot retrieve metalink for repository: epel. Please verify its path and try again
使用如下方法解决:
参考URL: http://www.netpc.com.cn/593.html
处理很简单,修改文件“/etc/yum.repos.d/epel.repo”, 将baseurl的注释取消, mirrorlist注释掉。即可。
继续执行该命令又报错了:
[root@localhost 桌面]# yum install -y docker-io
已加载插件:fastestmirror, refresh-packagekit, security
设置安装进程
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.cn99.com
* updates: mirrors.cn99.com
No package docker-io available.
错误:无须任何处理
yum install https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm
3、启动docker服务
service docker start
4、查看docker版本
docker version
5、配置阿里云的镜像加速器
使用该命令 加到docker 的配置文件中
vim /etc/sysconfig/docker
标签:CentOS,com,doceker,yum,版本,64,docker,安装 From: https://blog.51cto.com/u_11343833/6238951