Created
May 18, 2017 21:48
-
-
Save cicorias/e5c15cf887246c1999e5fe3ce93d7be2 to your computer and use it in GitHub Desktop.
Docker aliais
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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