- 
      
 - 
        
Save pwmpw/f830c16a449f4a58928a4ae353140191 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
beeman created this gist
Nov 15, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ # Stop all containers docker stop `docker ps -qa` # Remove all containers docker rm `docker ps -qa` # Remove all images docker rmi -f `docker images -qa ` # Remove all volumes docker volume rm $(docker volume ls -qf) # Remove all networks docker network rm `docker network ls -q` # Your installation should now be all fresh and clean. # The following commands should not output any items: # docker ps -a # docker images -a # docker volume ls # The following command show only show the default networks: # docker network ls