Error starting daemon: SELinux i
2020-07-22 本文已影响0人
周山
问题描述:
docker运行报错,使用 systemctl status docker.service命令提示如下
Error starting daemon: SELinux is not supported with the overlay2 grap...alse)
解决办法
是因为linux的内核中的SELinux不支持 overlay2 graph driver ,解决方法有两个,要么启动一个新内核,要么就在docker里禁用selinux,--selinux-enabled=false
1、修改如下图所示位置的值
image.png
2、重新运行
systemctl start docker
成功
image.png