Hi,
I needed to install a docker based application that was failing in lxd due to privileged status …
So, I set raw.lxc as follows:
raw.lxc: |-
lxc.apparmor.profile = unconfined
lxc.cgroup.devices.allow = a
lxc.mount.auto = proc:rw sys:rw cgroup:rw
lxc.cap.drop = mac_override sys_time sys_module sys_rawio
Additionally, I also set the following container security params, and restarted the container
lxc config set mail security.nesting true
lxc config set mail security.privileged true
But to my surprise, I have since been unable to install both docker-ce (from the Docker repo) or docker.io (from the ubuntu repo). Install always fails when docker tries to start during package configuration.
If I remove the raw.lxc settings, docker starts up once again … but then I am unable to install the application. I get exactly the same error whether I try a container based on ubuntu:18.04 or ubuntu:16.04
- The errors docker throws up during install (ubuntu:16.04 container)
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Wed 2018-09-12 22:53:10 UTC; 7ms ago
Docs: https://docs.docker.com
Process: 1958 ExecStart=/usr/bin/dockerd -H fd:// $DOCKER_OPTS (code=exited, status=1/FAILURE)
Main PID: 1958 (code=exited, status=1/FAILURE)
Sep 12 22:53:09 mail1 systemd[1]: Starting Docker Application Container Engine...
Sep 12 22:53:09 mail1 dockerd[1958]: time="2018-09-12T23:53:09.363293767+01:00" level=info msg="libcontainerd: new ... 1980"
Sep 12 22:53:10 mail1 dockerd[1958]: time="2018-09-12T23:53:10.379220864+01:00" level=error msg="'overlay' not foun...aded."
Sep 12 22:53:10 mail1 dockerd[1958]: time="2018-09-12T23:53:10.381226073+01:00" level=error msg="'overlay' not foun...aded."
Sep 12 22:53:10 mail1 dockerd[1958]: time="2018-09-12T23:53:10.383325671+01:00" level=error msg="There are no more ...able."
Sep 12 22:53:10 mail1 dockerd[1958]: Error starting daemon: error initializing graphdriver: loopback attach failed
Sep 12 22:53:10 mail1 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE
Sep 12 22:53:10 mail1 systemd[1]: Failed to start Docker Application Container Engine.
Sep 12 22:53:10 mail1 systemd[1]: docker.service: Unit entered failed state.
Sep 12 22:53:10 mail1 systemd[1]: docker.service: Failed with result 'exit-code'.
Hint: Some lines were ellipsized, use -l to show in full.
journalctl -xe
does not show any more useful error
- The errors docker throws up during install (ubuntu:18.04 container) - via
journalctl -xe
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit docker.socket has finished shutting down.
Sep 12 22:52:32 mail systemd[1]: Stopping Docker Socket for the API.
-- Subject: Unit docker.socket has begun shutting down
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit docker.socket has begun shutting down.
Sep 12 22:52:32 mail systemd[1]: Starting Docker Socket for the API.
-- Subject: Unit docker.socket has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit docker.socket has begun starting up.
Sep 12 22:52:32 mail systemd[1]: Listening on Docker Socket for the API.
-- Subject: Unit docker.socket has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit docker.socket has finished starting up.
--
-- The start-up result is RESULT.
Sep 12 22:52:32 mail systemd[1]: docker.service: Start request repeated too quickly.
Sep 12 22:52:32 mail systemd[1]: docker.service: Failed with result 'exit-code'.
Sep 12 22:52:32 mail systemd[1]: Failed to start Docker Application Container Engine.
-- Subject: Unit docker.service has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit docker.service has failed.
--
-- The result is RESULT.
Sep 12 22:52:32 mail systemd[1]: docker.socket: Failed with result 'service-start-limit-hit'.
Sep 12 23:06:00 mail systemd[1]: Starting Cleanup of Temporary Directories...
-- Subject: Unit systemd-tmpfiles-clean.service has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-
I cannot tell which of the raw.lxc settings is tripping docker within the container …
-
Could this be something to do with /dev/net/tun … as mentioned in this launchpad bug ?