Skip to content

Instantly share code, notes, and snippets.

View sanjeetiitr's full-sized avatar
🎯
Focusing

Sanjeet Kishore sanjeetiitr

🎯
Focusing
View GitHub Profile
@ilagnev
ilagnev / docker-gc.sh
Last active March 19, 2023 03:06
docker clean up stopped containers and remove unlinked images
#!/usr/bin/sh
# info
docker system df # Show docker disk usage, including space reclaimable by pruning
# automatic clean up
docker system prune # will delete ALL unused data
# (i.e. In order: containers stopped, volumes without containers and images with no containers)
# manual clean up
docker container prune # Remove all stopped containers