Skip to content

Instantly share code, notes, and snippets.

@jhrcz
Created December 5, 2016 11:06
Show Gist options
  • Save jhrcz/039f647596a754cc1e40d6ac0e05eeac to your computer and use it in GitHub Desktop.
Save jhrcz/039f647596a754cc1e40d6ac0e05eeac to your computer and use it in GitHub Desktop.
docker-clean-wasted
#!/bin/bash
set -xu
sudo docker ps -a | grep -i Exited | while read id rest ; do sudo docker rm $id ; done
sudo docker images | grep none | while read a b id rest ; do sudo docker rmi $id ; done
sudo docker volume ls -qf dangling=true | while read id ; do sudo docker volume rm $id ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment