π ~1 min read
Table of contents
Symptom & Impact
Container workloads remain offline because Docker daemon does not reach active state.
Environment & Reproduction
Often appears after daemon.json edits, storage driver conflicts, or package updates.
sudo systemctl status docker
docker info
sudo journalctl -u docker -n 120 --no-pager
Root Cause Analysis
Invalid daemon configuration, storage corruption, or incompatible runtime options.
Quick Triage
Validate configuration and kernel prerequisites.
sudo dockerd --validate --config-file /etc/docker/daemon.json
lsmod | grep overlay
df -h /var/lib/docker
Step-by-Step Diagnosis
Inspect logs, cgroup mode, and runtime availability.
grep -RIn "docker|containerd|cgroup" /var/log 2>/dev/null | tail -n 30
sudo systemctl status containerd
cat /proc/cgroups

Solution – Primary Fix
Correct daemon config, restart dependencies, and relaunch Docker.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo cp -a /etc/docker/daemon.json /var/tmp/daemon.json.bak.$(date +%s) 2>/dev/null || true
sudo dockerd --validate --config-file /etc/docker/daemon.json
sudo systemctl restart containerd
sudo systemctl restart docker

Solution – Alternative Approaches
Temporarily move Docker data root to isolate storage corruption.
sudo systemctl stop docker
sudo mv /var/lib/docker /var/lib/docker.bak.$(date +%s)
sudo systemctl start docker
Verification & Acceptance Criteria
Daemon is active and containers start successfully.
sudo systemctl is-active docker
docker ps
docker run --rm hello-world
Rollback Plan
Restore previous daemon config and data root if needed.
sudo cp -a /var/tmp/daemon.json.bak.* /etc/docker/daemon.json 2>/dev/null || true
sudo systemctl restart docker
docker info
Prevention & Hardening
Lint daemon configuration and monitor storage health before upgrades.
sudo dockerd --validate --config-file /etc/docker/daemon.json
df -h /var/lib/docker
systemctl status docker
Related Errors & Cross-Refs
Related to containerd startup errors and full root filesystem issues.
Related tutorial: View the step-by-step tutorial for Debian 12.
View all Debian 12 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Docker Engine on Debian operational and troubleshooting documentation.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.