Created
December 18, 2016 13:41
-
-
Save macbre/7d2875fac929ac34d2e683d9490d34f5 to your computer and use it in GitHub Desktop.
Docker utils
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
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