mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 04:46:41 +00:00
17 lines
283 B
Bash
17 lines
283 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)"
|
|
}
|
|
|
|
if command-exists docker; then
|
|
zinit ice from'gh-r' as'program' mv'ctop-* -> ctop'
|
|
zinit light bcicen/ctop
|
|
fi
|