Issue: Docker Service Fails to Start on CachyOS
System Info:
- OS: CachyOS
- Kernel: 6.11.5-2-cachyos
- System: Lenovo V330-15IKB, Intel Core i5-8250U, 20 GB RAM
Problem Description:
I am trying to start the Docker service, but it consistently fails with the following error messages. After running sudo systemctl start docker
, Docker service immediately fails.
Command Output:
❯ sudo systemctl start docker
❯ sudo systemctl status docker.service
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.
× docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; preset: disabled)
Active: failed (Result: exit-code) since Wed 2024-10-23 17:33:16 CEST; 14s ago
Invocation: 3623b168bb4c445c95cee816301a3669
TriggeredBy: × docker.socket
Docs: https://docs.docker.com
Process: 11804 ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock (code=exited, status=1/FAILURE)
Main PID: 11804 (code=exited, status=1/FAILURE)
okt 23 17:33:16 cachyos-ziva systemd[1]: docker.service: Scheduled restart job, restart counter is at 3.
okt 23 17:33:16 cachyos-ziva systemd[1]: docker.service: Start request repeated too quickly.
okt 23 17:33:16 cachyos-ziva systemd[1]: docker.service: Failed with result 'exit-code'.
okt 23 17:33:16 cachyos-ziva systemd[1]: Failed to start Docker Application Container Engine.
okt 23 17:33:31 cachyos-ziva systemd[1]: docker.service: Start request repeated too quickly.
I have also tried running journalctl -xeu docker.service
and attempted the following steps:
- Restarting both
docker.service
anddocker.socket
. - Removing
/run/docker.sock
. - Checking for network bridge issues (
docker0
). - Firewalld is disabled, so it’s not interfering.
Despite these steps, the issue persists. Any help or suggestions on how to resolve this would be appreciated.