Last active
November 13, 2023 10:49
-
-
Save brianclements/f72b2de8e307c7b56689 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
You can try out below script, i am using that below