-
-
Save voa2000/5f74945af67e2fe5848786f655c61b55 to your computer and use it in GitHub Desktop.
Bash script helper to remove Docker images and containers.
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 | |
# options: | |
# remove stopped containers and untagged images | |
# $ dkcleanup | |
# remove all stopped|running containers and untagged images | |
# $ dkcleanup --reset | |
# remove containers|images|tags matching {repository|image|repository\image|tag|image:tag} | |
# pattern and untagged images | |
# $ dkcleanup --purge {image} | |
# everything | |
# $ dkcleanup --nuclear | |
if [ "$1" == "--reset" ]; then | |
# Remove all containers regardless of state | |
docker rm -vf $(docker ps -a -q) 2>/dev/null || echo "No more containers to remove." | |
elif [ "$1" == "--purge" ]; then | |
# Attempt to remove running containers that are using the images we're trying to purge first. | |
(docker rm -vf $(docker ps -a | grep "$2/\|/$2 \| $2 \|:$2\|$2-\|$2:\|$2_" | awk '{print $1}') 2>/dev/null || echo "No containers using the \"$2\" image, continuing purge.") &&\ | |
# Remove all images matching arg given after "--purge" | |
docker rmi $(docker images | grep "$2/\|/$2 \| $2 \|$2 \|$2-\|$2_" | awk '{print $3}') 2>/dev/null || echo "No images matching \"$2\" to purge." | |
else | |
# This alternate only removes "stopped" containers | |
docker rm -vf $(docker ps -a | grep "Exited" | awk '{print $1}') 2>/dev/null || echo "No stopped containers to remove." | |
fi | |
if [ "$1" == "--nuclear" ]; then | |
docker rm -vf $(docker ps -a -q) 2>/dev/null || echo "No more containers to remove." | |
docker rmi $(docker images -q) 2>/dev/null || echo "No more images to remove." | |
else | |
# Always remove untagged images | |
docker rmi $(docker images | grep "<none>" | awk '{print $3}') 2>/dev/null || echo "No untagged images to delete." | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment