Created
December 9, 2019 21:22
-
-
Save esmerino/707e7f711d848116af2ab2dbdd9f7572 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
docker rm -f $(docker ps -a -q) | |
docker rmi -f $(docker images -a -q) | |
docker volume rm $(docker volume ls -q) | |
docker network rm $(docker network ls | tail -n+2 | awk '{if($2 !~ /bridge|none|host/){ print $1 }}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment