I have two systems (laptop and workstation), both have been upgraded to opensuse 15.6. One of them runs docker just fine (workstation), the other fails to do so.
> sudo systemctl restart docker
Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xeu docker.service" for details.
myusername@myhostname:~> sudo systemctl status docker.service
× docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; preset: disabled)
Active: failed (Result: exit-code) since Thu 2024-06-27 14:34:31 EDT; 3min 20s ago
TriggeredBy: × docker.socket
Docs: http://docs.docker.com
Process: 11399 ExecStart=/usr/bin/dockerd --add-runtime oci=/usr/sbin/docker-runc $DOCKER_NETWORK_OPTIONS $DOCKER_OPTS >
Main PID: 11399 (code=exited, status=1/FAILURE)
CPU: 212ms
Jun 27 14:34:31 myhostname systemd[1]: docker.service: Scheduled restart job, restart counter is at 3.
Jun 27 14:34:31 myhostname systemd[1]: docker.service: Start request repeated too quickly.
Jun 27 14:34:31 myhostname systemd[1]: docker.service: Failed with result 'exit-code'.
Jun 27 14:34:31 myhostname systemd[1]: Failed to start Docker Application Container Engine.
Not sure how to debug this - it worked fine (for at least 15.4 and 15.5) on the same system. After uninstalling and removing /var/lib/docker
, I reinstalled:
Retrieving: docker-24.0.7_ce-150000.198.2.x86_64 (Main Repository) (1/4), 25.5 MiB
Retrieving: docker-24.0.7_ce-150000.198.2.x86_64.rpm ....................................................[done (22.7 MiB/s)]
Retrieving: docker-buildx-0.11.2-bp156.1.12.x86_64 (Main Repository) (2/4), 11.6 MiB
Retrieving: docker-buildx-0.11.2-bp156.1.12.x86_64.rpm ..................................................[done (21.4 MiB/s)]
Retrieving: docker-rootless-extras-24.0.7_ce-150000.198.2.noarch (Main Repository) (3/4), 117.9 KiB
Retrieving: docker-rootless-extras-24.0.7_ce-150000.198.2.noarch.rpm .....................................[done (3.0 KiB/s)]
Retrieving: docker-bash-completion-24.0.7_ce-150000.198.2.noarch (Main Repository) (4/4), 129.9 KiB
Retrieving: docker-bash-completion-24.0.7_ce-150000.198.2.noarch.rpm .....................................[done (3.0 KiB/s)]
where “Main Repository” maps to
http://download.opensuse.org/distribution/leap/15.6/repo/oss/
Any help is appreciated.