Skip to content

Instantly share code, notes, and snippets.

@karelhala
Forked from jkremser/docker-cleanup
Created January 5, 2017 12:21
Show Gist options
  • Save karelhala/9ce36c5d1ac0dbb9bc50e80b41f3401f to your computer and use it in GitHub Desktop.
Save karelhala/9ce36c5d1ac0dbb9bc50e80b41f3401f to your computer and use it in GitHub Desktop.
alias d=docker
d kill `d ps -aq`
d rm -f `d ps -aq`
d rmi -f `d images -qa`
d volume rm `d volume ls -q`
d network rm `d network ls -q`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment