Last active
March 10, 2021 09:54
-
-
Save maxleiko/73affff752ae16b97da24be0930ea2ac to your computer and use it in GitHub Desktop.
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 dim="docker images" | |
alias dps="docker ps" | |
alias drm="docker rm" | |
alias drmi="docker rmi" | |
alias drme="docker ps -a | grep Exited | cut -d' ' -f1 | xargs docker rm" | |
# Deletes all docker containers (if stopped, otherwise use -f) | |
function drma() { | |
drm $1 $(dps -aq) | |
} | |
alias dc="docker-compose" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment