Skip to content

Instantly share code, notes, and snippets.

@frank-u
Forked from eduardocardoso/gist:82a629882ddb02ab3677
Created November 11, 2015 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frank-u/13fc4f42b325191cb2a0 to your computer and use it in GitHub Desktop.
Save frank-u/13fc4f42b325191cb2a0 to your computer and use it in GitHub Desktop.
Script to delete exited containers and untagged/unused images from docker
#!/bin/bash
set -o errexit
echo "Removing exited docker containers..."
docker ps -a -f status=exited -q | xargs -r docker rm -v
echo "Removing dangling images..."
docker images --no-trunc -q -f dangling=true | xargs -r docker rmi
echo "Removing unused docker images"
images=($(docker images | tail -n +2 | awk '{print $1":"$2}'))
containers=($(docker ps -a | tail -n +2 | awk '{print $2}'))
containers_reg=" ${containers[*]} "
remove=()
for item in ${images[@]}; do
if [[ ! $containers_reg =~ " $item " ]]; then
remove+=($item)
fi
done
remove_images=" ${remove[*]} "
echo ${remove_images} | xargs -r docker rmi
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment