Skip to content

Instantly share code, notes, and snippets.

@corentone
Last active September 3, 2015 16:29
Show Gist options
  • Save corentone/31446b246bb7f61a8a52 to your computer and use it in GitHub Desktop.
Save corentone/31446b246bb7f61a8a52 to your computer and use it in GitHub Desktop.
Docker Cleanup
#http://blog.yohanliyanage.com/2015/05/docker-clean-up-after-yourself/
docker rm -v $(docker ps -a -q -f status=exited)
docker rmi $(docker images -f "dangling=true" -q)
docker rmi $(docker images | grep NAME | awk '{print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment