Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SELinux is not supported with the overlay graph driver

When I installed docker and ran service docker start I got this message:

Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

When I ran journalctl -xe I got this message:

8月 02 20:42:11 centos-master systemd[1]: Unit docker-storage-setup.service entered failed state.
8月 02 20:42:11 centos-master systemd[1]: docker-storage-setup.service failed.
8月 02 20:42:11 centos-master systemd[1]: Starting Docker Application Container Engine...
-- Subject: Unit docker.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit docker.service has begun starting up.
8月 02 20:42:11 centos-master dockerd-current[32672]: time="2017-08-02T20:42:11.667102874+08:00" level=info msg="libcontainerd: new containerd process, pid: 32676"
8月 02 20:42:11 centos-master dockerd-current[32672]: time="2017-08-02T20:42:11.681065709+08:00" level=info msg="[graphdriver] using prior storage driver \"overlay\""
8月 02 20:42:12 centos-master dockerd-current[32672]: time="2017-08-02T20:42:12.045251482+08:00" level=fatal msg="Error starting daemon: SELinux is not supported with the overlay graph driver
8月 02 20:42:12 centos-master systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE
8月 02 20:42:12 centos-master systemd[1]: Failed to start Docker Application Container Engine.
-- Subject: Unit docker.service has failed

thanks my friends

like image 924
xzg Avatar asked Aug 02 '17 12:08

xzg


2 Answers

Docker version 1.13.1

For CentOS Linux release 7.2.1511 (Core), ensure following DOCKER_STORAGE_OPTIONS option is set to devicemapper.

bash # vi /etc/sysconfig/docker-storage
...
DOCKER_STORAGE_OPTIONS="--storage-driver devicemapper "
...

bash # vi /etc/sysconfig/docker-storage-setup
...
STORAGE_DRIVER=devicemapper
...
like image 187
Praveen Avatar answered Nov 04 '22 07:11

Praveen


According to the compatibility matrix docker-1.13 for CentOS supports only devicemapper.

Got a similar problem with docker trying to start by default with overlay2, solved downgrading to docker-1.12.

like image 3
Cavaz Avatar answered Nov 04 '22 07:11

Cavaz