Skip to content

Instantly share code, notes, and snippets.

@orangecms
Created October 20, 2017 12:40
Show Gist options
  • Save orangecms/fdfcb261785e993056d67c781982ca31 to your computer and use it in GitHub Desktop.
Save orangecms/fdfcb261785e993056d67c781982ca31 to your computer and use it in GitHub Desktop.
Workaround for the pointless crap Docker leaves behind to bloat up your disk
#!/bin/bash
## see https://lebkowski.name/docker-volumes/
# remove exited containers:
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v
# remove unused images:
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs -r docker rmi
# remove unused volumes:
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