Created
February 26, 2014 07:47
-
-
Save yvasiyarov/9225344 to your computer and use it in GitHub Desktop.
delete all Docker containers
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
for cont in $(sudo docker ps -a | grep "Exit" | cut -d " " -f 1); do sudo docker rm $cont; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment