meta-virtualization/recipes-containers/docker/README
Bruce Ashfield f6bf30aca6 docker: ensure that sysvinit and systemd are exclusive
The sysvinit functionality conflicts with the docker daemon
settings required for the systemd docker.socket.

Ensure that the sysvinit capabilities are only enabled if
systemd is not present.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2022-08-25 22:55:48 -04:00

275 B

if containerd is starting docker, and it is interfering with standalone docker operation, you may need to kill the running daemon and restart it:

% ps axf | grep docker | grep -v grep | awk '{print "kill -9 " $1}' | sh % systemctl stop docker % systemctl start docker