Docker 要求 CentOS7 系统的内核版本高于 3.10

来自* <http://www.runoob.com/docker/centos-docker-install.html >

uname -r 可查看内核版本

安装: yum -y install docker

启动服务: service docker start 或者 systemctl start docker.service (最好用root用户启动,不然启动不了)

更换镜像地址:

新版的 Docker 使用 /etc/docker/daemon.json(Linux) 请在该配置文件中加入(没有该文件的话,请先建一个):

{
 "registry-mirrors": ["http://hub-mirror.c.163.com"]
}

来自* <http://www.runoob.com/docker/centos-docker-install.html >

在安装k8s的文章中, 也有描述docker的安装教程

k8s安装