报错信息: Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
解决办法:CentOS7系统的内核与Docker版本不兼容,更新CentOS7系统的内核版本
本机环境是VirtualBox上安装的CentOS7。
1.查看内核版本<Docker 要求 CentOS 系统的内核版本高于 3.10>
uname -r
2.更新yum包
yum update
3.安装Docker
yum install docker
4.启动Docker
[root@localhost ~]# systemctl start docker
//查看Docker版本
[root@localhost ~]# docker ‐v
5.开机启动docker
[root@localhost ~]# systemctl enable docker