Skip to content

Instantly share code, notes, and snippets.

@timelf123
Forked from osiyuk/docker-gc
Created September 3, 2017 03:59
Show Gist options
  • Save timelf123/c91809113b4bb33eaaf32e0c3c9c6275 to your computer and use it in GitHub Desktop.
Save timelf123/c91809113b4bb33eaaf32e0c3c9c6275 to your computer and use it in GitHub Desktop.
free up disk space after docker garbage
#!/bin/bash
GARBAGE="/var/lib/docker/aufs/diff"
du -hd 1 $GARBAGE | sort -hrk 1 | head -25
find $GARBAGE -maxdepth 1 -name *-removing -exec rm -rf '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment