Loading...
Loading...
Error response from daemon: write /var/lib/docker/...: no space left on deviceDocker has run out of disk space. Docker accumulates unused images, stopped containers, dangling volumes, and build cache over time. These can consume tens of gigabytes.
Remove all unused Docker resources in one command.
# Remove all stopped containers, unused networks, dangling images, and build cache
docker system prune
# Also remove unused volumes(more aggressive)
docker system prune--volumes
# Nuclear option — remove everything not currently running
docker system prune - a--volumesSelectively remove images, containers, or volumes.
# Remove all stopped containers
docker container prune
# Remove all unused images
docker image prune - a
# Remove all unused volumes
docker volume prune
# Check disk usage
docker system df