Last active
July 11, 2018 11:52
-
-
Save maximilian-lindsey/7dc989c8834627c1f837668bf7940139 to your computer and use it in GitHub Desktop.
Docker stop and prune all
This file contains 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 | |
docker stop $(docker ps -a -q) | |
# prune | |
docker system prune --all | |
# volume prune | |
docker volume prune |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment