Skip to content

Instantly share code, notes, and snippets.

View michaloo's full-sized avatar

Michał Rączka michaloo

View GitHub Profile
@michaloo
michaloo / gist:bfd855fd0d0c88b6ae8a
Created August 21, 2014 15:36
Remove <none> docker images
docker rmi $(docker images | grep '<none>' | awk '{print $3}')
@michaloo
michaloo / gist:89c56c256e8f1ae58e00
Created August 12, 2014 08:33
Remove orphaned docker containers directories
cd /var/lib/docker/containers/ && ls . | grep -vE "($(docker ps -aq | paste -sd "|"))" | xargs rm -r