Created
March 29, 2016 12:08
-
-
Save bastman/e9ed81e740bb9e7ba365 to your computer and use it in GitHub Desktop.
remove_docker_volumes.txt
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
// see: https://github.com/chadoe/docker-cleanup-volumes | |
$ docker volume rm $(docker volume ls -qf dangling=true) | |
$ docker volume ls -qf dangling=true | xargs -r docker volume rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment