Last active
May 22, 2020 15:03
-
-
Save marcelocg/f1a2dd3e9bae1e1bd64e to your computer and use it in GitHub Desktop.
Useful docker command lines
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
| # Stop all containers | |
| docker stop $(docker ps -a -q) | |
| # Remove all containers | |
| docker rm $(docker ps -a -q) | |
| # Remove all volumes | |
| docker volume rm $(docker volume ls -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment