Skip to content

Instantly share code, notes, and snippets.

@macbre
Created December 18, 2016 13:41
Show Gist options
  • Save macbre/7d2875fac929ac34d2e683d9490d34f5 to your computer and use it in GitHub Desktop.
Save macbre/7d2875fac929ac34d2e683d9490d34f5 to your computer and use it in GitHub Desktop.
Docker utils
IMAGES=`docker ps -a | grep -E 'Exited|Created' | awk '{print $1}'`
df -h | head -n2
for IMAGE in $IMAGES
do
docker rm $IMAGE
done
df -h | head -n2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment