Last active
April 13, 2016 13:17
-
-
Save sw360cab/559362aead4735046eca72877ac305e7 to your computer and use it in GitHub Desktop.
Remove container which status is 'Exited'
This file contains hidden or 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
docker ps -a | grep 'Exited' | awk '{print $1}' | xargs docker rm -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment