Skip to content

Instantly share code, notes, and snippets.

@bastman
Created March 29, 2016 12:08
Show Gist options
  • Save bastman/e9ed81e740bb9e7ba365 to your computer and use it in GitHub Desktop.
Save bastman/e9ed81e740bb9e7ba365 to your computer and use it in GitHub Desktop.
remove_docker_volumes.txt
// 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