Last active
January 5, 2017 16:05
-
-
Save elderdosantos/a70e746673fdb623ec1b3e3d0212f12b to your computer and use it in GitHub Desktop.
remove all docker images and containers
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
sudo docker rmi -f $(sudo docker images -q -a) | |
sudo docker rm -f $(sudo docker ps -q -a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment