Skip to content

Docker Issues

Symptoms: “Cannot connect to Docker daemon”

Fix:

Terminal window
# macOS
open -a Docker
# Linux
sudo systemctl start docker

Symptoms: Stuck at “Starting container…”

Fix:

Terminal window
scc stop --all
docker system prune -f
scc start --fresh

Symptoms: “Failed to pull image”

Causes:

  • Network issues
  • Image blocked by policy
  • Registry unavailable

Fix:

Terminal window
scc config explain --field blocked_base_images
docker pull <image> # Test manually

Remove old containers:

Terminal window
scc prune
# or
docker container prune

Symptoms: Docker permission errors

Fix (Linux):

Terminal window
sudo usermod -aG docker $USER
# Log out and back in