Created
January 6, 2026 12:12
-
-
Save Git-I985/2397ac71d4da7f98ee6b82152f69576e to your computer and use it in GitHub Desktop.
Docker stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cleanup | |
| docker system df -v | |
| docker container prune | |
| docker stop $(docker ps -aq) | |
| docker rm $(docker ps -aq) | |
| docker image prune -a | |
| docker network prune | |
| docker system prune -a | |
| # Cleanup build cache | |
| docker builder prune -a | |
| docker compose down --remove-orphans |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment