-
-
Save richinseattle/6c21dfb91c916fbc7006450b55774443 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