Created
February 22, 2017 22:26
-
-
Save elderdosantos/8b1a4d3af0e7eee812fc5219f575670c to your computer and use it in GitHub Desktop.
Clean docker
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
dcleanup () { | |
docker ps --filter status=exited -q | xargs docker rm | |
docker images --filter dangling=true -q | xargs docker rmi | |
docker volume ls -qf dangling=true | xargs docker volume rm | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment