Last active
September 21, 2022 01:22
-
-
Save Whistler092/8ce35c076afcac24ca7d6b25ec6270b3 to your computer and use it in GitHub Desktop.
scripts
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 $1 ":" $2}') 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 |
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
sudo swapon -s | |
sudo fallocate -l 4G /swapfile | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment