Skip to content

Instantly share code, notes, and snippets.

@malikperang
Forked from osiyuk/docker-gc
Created September 23, 2017 20:58
Show Gist options
  • Save malikperang/c3e3734a80378d3b20d8047e09a44fed to your computer and use it in GitHub Desktop.
Save malikperang/c3e3734a80378d3b20d8047e09a44fed 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