Docker Issues
Docker Not Running
Section titled “Docker Not Running”Symptoms: “Cannot connect to Docker daemon”
Fix:
# macOSopen -a Docker
# Linuxsudo systemctl start dockerContainer Won’t Start
Section titled “Container Won’t Start”Symptoms: Stuck at “Starting container…”
Fix:
scc stop --alldocker system prune -fscc start --freshImage Pull Failed
Section titled “Image Pull Failed”Symptoms: “Failed to pull image”
Causes:
- Network issues
- Image blocked by policy
- Registry unavailable
Fix:
scc config explain --field blocked_base_imagesdocker pull <image> # Test manuallyContainer Cleanup
Section titled “Container Cleanup”Remove old containers:
scc prune# ordocker container prunePermission Denied
Section titled “Permission Denied”Symptoms: Docker permission errors
Fix (Linux):
sudo usermod -aG docker $USER# Log out and back in