Last active
December 30, 2015 23:59
-
-
Save tunglam14/7904302 to your computer and use it in GitHub Desktop.
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
| # remove all docker containers and images | |
| docker stop $(docker ps -a | awk '{print $1}' | grep -v CONTAINER) | |
| docker rm $(docker ps -a | awk '{print $1}' | grep -v CONTAINER) | |
| docker rmi $(docker images -a | awk '{print $3}' | grep -v IMAGE) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment