Created
June 18, 2017 14:52
-
-
Save filhocodes/197cd6c61a92473e00e1130662280cee to your computer and use it in GitHub Desktop.
Docker Cleanup
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
docker stop $(docker ps -q); | |
docker rm $(docker ps -a -q); | |
docker rmi $(docker images -q); | |
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