Created
April 2, 2014 10:34
-
-
Save jpetitcolas/9931678 to your computer and use it in GitHub Desktop.
Cleaning all Docker containers and images
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 stop $(sudo docker ps -a -q) | |
sudo docker rm $(sudo docker ps -a -q) | |
sudo docker rmi $(sudo docker images -a -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment