Skip to content

Instantly share code, notes, and snippets.

@maxleiko
Last active March 10, 2021 09:54
Show Gist options
  • Save maxleiko/73affff752ae16b97da24be0930ea2ac to your computer and use it in GitHub Desktop.
Save maxleiko/73affff752ae16b97da24be0930ea2ac to your computer and use it in GitHub Desktop.
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