一、Docker支持的CentOS版本:
目前,CentOS 仅发行版本中的内核支持 Docker。
- CentOS 7 (64-bit)、系统内核版本为 3.10 以上。
- CentOS 6.5 (64-bit) 或更高的版本、系统内核版本为 2.6.32-431 或者更高版本。
二、Docker学习网站:https://www.runoob.com/docker/centos-docker-install.html
三、在CentOS7环境下使用yum安装Docker
1、通过 uname -r 命令查看你当前的内核版本,验证CentOS 版本是否支持 Docker。
[root@localhost ~]# uname -r
2、使用 root 权限登录 Centos,确保 yum 包更新到最新(更新的时间会比较长,更新过程中会询问:是否继续?[y/N]:y)。
[root@localhost ~]# yum update
3、卸载旧版本(如果安装过旧版本的话)。
[root@localhost ~]# yum remove docker docker-common docker-selinux docker-engine
我的centos7没有需要卸载的旧版本
4、安装需要的软件包,yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的
[root@localhost ~]# yum install -y yum-utils device-mapper-persistent-data lvm2
5、设置yum源
[root@localhost ~]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
6、更新yum缓存
[root@localhost ~]# yum makecache fast
7、查看仓库中所有docker版本,并选择特定版本安装
[root@localhost ~]# yum list docker-ce --showduplicates | sort -r
8、安装docker
[root@localhost ~]# yum install docker-ce-17.12.0.ce #由于repo中默认只开启stable仓库,故这里安装的是最新稳定版17.12.0
9、启动docker服务并设置开机启动
[root@localhost ~]# systemctl start docker.service (启动docker服务)
[root@localhost ~]# systemctl enable docker.service (设置开机启动)
[root@localhost ~]# systemctl daemon-reload (重载系统服务)
10、验证安装是否成功(有client和service两部分表示docker安装启动都成功)
[root@localhost ~]# docker version
11、镜像加速
鉴于国内网络问题,后续拉取Docker镜像十分缓慢,需要配置加速器来解决,这里我们使用的是网易的镜像地址:http://hub-mirror.c.163.com。
修改配置文件,新版的Docker使用/etc/docker/daemon.json来配置daemon。
[root@localhost ~]# vi /etc/docker/daemon.json
在配置文件中加入
{
“registry-mirrors”: [“http://hub-mirror.c.163.com”]
}
12、关闭SELinux,修改 /etc/selinux/config 文件中的 SELINUX=enforcing为 disabled ,然后重启reboot。
[root@localhost ~]# vi /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled,然后保存退出。
[root@localhost ~]# reboot 重启
13、Docker安装完成。