mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
18 lines
314 B
Bash
18 lines
314 B
Bash
#
|
|
# Docker Related
|
|
#
|
|
|
|
if command-exists docker; then
|
|
zinit ice from'gh-r' as'program' mv'ctop-* -> ctop'
|
|
zinit light bcicen/ctop
|
|
fi
|
|
|
|
docker_remove_exited() {
|
|
docker rm $(docker ps -f='status=exited' -q)
|
|
}
|
|
|
|
alias d="docker"
|
|
alias dc="docker-compose"
|
|
alias co="docker-compose"
|
|
alias dre="docker_remove_exited"
|