Skip to content

Instantly share code, notes, and snippets.

@joonahn
Created October 20, 2017 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joonahn/fe687096b371a38745ffdb2bbeee45be to your computer and use it in GitHub Desktop.
Save joonahn/fe687096b371a38745ffdb2bbeee45be to your computer and use it in GitHub Desktop.
Remove unused docker volumes
#!/bin/bash
sudo find '/var/lib/docker/volumes/' -mindepth 1 -maxdepth 1 -type d | grep -vFf <(
docker ps -aq | xargs docker inspect | jq -r '.[] | .Mounts | .[] | .Name | select(.)'
) | sudo xargs -r rm -fr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment