Last active
August 17, 2017 17:25
-
-
Save Streek/d542a1fd6276f44ecb190b555feb7680 to your computer and use it in GitHub Desktop.
Docker Shortcuts
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
| #This works on the majority of systems including windows with powershell. | |
| #Start all docker containers | |
| docker start $(docker ps -a -q) | |
| #Stop all docker containers | |
| docker stop $(docker ps -a -q) | |
| #Remove all docker containers | |
| docker rm $(docker ps -a -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment