mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:26:40 +00:00
It was time to split the environment related stuff out to ~/.zshenv, leaving my ~/.zshrc file specifically for setup of interactive shells.
12 lines
169 B
Bash
12 lines
169 B
Bash
#
|
|
# Docker Related
|
|
#
|
|
|
|
alias d="docker"
|
|
alias dc="docker-compose"
|
|
alias co="docker-compose"
|
|
|
|
docker_remove_exited () {
|
|
docker rm "$(docker ps -f='status=exited' -q)"
|
|
}
|