Last active
February 22, 2017 19:30
-
-
Save zuver/234ec755dba7e286101ca647fbe3f71f to your computer and use it in GitHub Desktop.
Remove and stop 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
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment