Welcome
Docker cleanup commands.md
All Notes
notes/docker-cleanup-commands

Docker cleanup commands

| notes

Clean up Docker resources when disk space gets tight.

# Remove unused containers, networks, images
docker system prune -a

# Remove unused volumes too
docker system prune -a --volumes

# Check disk usage
docker system df