Skip to content

Instantly share code, notes, and snippets.

@broisnischal
Created March 19, 2025 03:57
Show Gist options
  • Save broisnischal/042b994e99fe64cd0fee055e8e793632 to your computer and use it in GitHub Desktop.
Save broisnischal/042b994e99fe64cd0fee055e8e793632 to your computer and use it in GitHub Desktop.
Clean up docker
# Stop all running containers
docker stop $(docker ps -q)
# Remove all containers
docker rm -f $(docker ps -aq)
# Remove all images
docker rmi -f $(docker images -aq)
# Remove all volumes
docker volume rm $(docker volume ls -q)
# Remove all networks (except default ones)
docker network prune -f
# Clean up build cache
docker system prune -af --volumes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment