Last active
March 10, 2018 04:23
-
-
Save i-e-b/bdd68e7921a9f76d5189 to your computer and use it in GitHub Desktop.
Kill 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
| sudo bash | |
| docker stop -t 0 $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) | |
| exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment