Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created May 18, 2017 21:48
Show Gist options
  • Save cicorias/e5c15cf887246c1999e5fe3ce93d7be2 to your computer and use it in GitHub Desktop.
Save cicorias/e5c15cf887246c1999e5fe3ce93d7be2 to your computer and use it in GitHub Desktop.
Docker aliais
alias docker-rm='docker rm -f $(docker ps -q)'
alias docker-stop='docker stop $(docker ps -q)'
alias docker-rmi='docker rmi -f $(docker images -q)'
alias docker-clean='docker-stop && docker-rm && docker-rmi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment