Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created October 8, 2014 19:14
Show Gist options
  • Save boo1ean/bae8d4b6877670e3a8e4 to your computer and use it in GitHub Desktop.
Save boo1ean/bae8d4b6877670e3a8e4 to your computer and use it in GitHub Desktop.
Docker aliases
# ~/.bash_aliases
# Kill all running containers.
alias dockerkill='docker kill $(docker ps -a -q)'
# Delete all stopped containers.
alias dockercleanc='docker rm $(docker ps -a -q)'
# Delete all untagged images.
alias dockercleani='docker rmi $(docker images -q -f dangling=true)'
# Delete all stopped containers and untagged images.
alias dockerclean='dockercleanc || true && dockercleani'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment