centos 7 启动docker失败。
Posted yjt1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7 启动docker失败。相关的知识,希望对你有一定的参考价值。
刚安装docker-io,在启动的时候报如下错误:
Error starting daemon: SELinux is not supported with the overlay2 graph driver on this kernel. Either boot into a newer kernel or disable selinux in docker
解决:
打开vim /etc/sysconfig/docker
修改成如下这样:
也就是在--selinux-enabled改成--selinux-enabled=false
重启docker
systemctl restart docker
添加加速器:
打开:vim /etc/docker/daemon.json
添加:
{
"registry-mirrors": ["http://c6744fbb.m.daocloud.io"]
}
以上是关于centos 7 启动docker失败。的主要内容,如果未能解决你的问题,请参考以下文章
使用 docker 在 CentO 上设置 PHP-FPM、Nginx、Mariadb