Last active
May 25, 2024 20:19
-
-
Save JeffBelback/5687bb02f3618965ca8f to your computer and use it in GitHub Desktop.
Destroy all Docker Containers and Images
This file contains 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
#!/bin/bash | |
# Stop all containers | |
containers=`docker ps -a -q` | |
if [ -n "$containers" ] ; then | |
docker stop $containers | |
fi | |
# Delete all containers | |
containers=`docker ps -a -q` | |
if [ -n "$containers" ]; then | |
docker rm -f -v $containers | |
fi | |
# Delete all images | |
images=`docker images -q -a` | |
if [ -n "$images" ]; then | |
docker rmi -f $images | |
fi |
you da best
Not sure if it's a good idea or not, but you can also remove volumes:
docker volume rm $(docker volume ls -q)
Oh and by the way, there is also docker system prune.
thks!
thanks!
Thanks man
Useful
Updated with implementation from @aaryno. Good stuff.
please add remove all volumes too
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great script! Thanks!