You are not logged in.
Pages: 1
I've had had installed Docker, but never used it. Now I've wanted to try it, but it fails to start:
systemctl status docker.service
● docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Tue 2018-05-22 17:03:59 CEST; 6s ago
Docs: https://docs.docker.com
Process: 21345 ExecStart=/usr/bin/dockerd -H fd:// (code=exited, status=1/FAILURE)
Main PID: 21345 (code=exited, status=1/FAILURE)
Mai 22 17:03:59 server systemd[1]: docker.service: Service hold-off time over, scheduling restart.
Mai 22 17:03:59 server systemd[1]: docker.service: Scheduled restart job, restart counter is at 3.
Mai 22 17:03:59 server systemd[1]: Stopped Docker Application Container Engine.
Mai 22 17:03:59 server systemd[1]: docker.service: Start request repeated too quickly.
Mai 22 17:03:59 server systemd[1]: docker.service: Failed with result 'exit-code'.
Mai 22 17:03:59 server systemd[1]: Failed to start Docker Application Container Engine.
How can I find out where the real problem lies?
Offline
It's complaining about missing "OverlayFS" support, despite I'm even using the newest kernel (4.16.10).
Does OverlayFS need the lvm2 service? I have muted it, because I didn't see any purpose for it on my system.
Last edited by stromo (2018-05-24 22:16:30)
Offline
Offline
WARN Error while setting daemon root propagation, this is not generally critical but may cause some functionality to not work or fallback to less desirable behavior dir=/var/lib/docker error="error getting daemon root's parent mount: Could not find source mount of /var/lib/docker"
Failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd
After doing dir="/var/lib/docker" && mount --bind $dir $dir:
Failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd
Offline
Try updating iptables.
sudo pacman -Syu iptables
Offline
Pages: 1