[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles shell zinit zsh
0

Configure Feed

Select the types of activity you want to include in your feed.

Update docker.zsh

+3 -1
+3 -1
docker.zsh
··· 2 2 alias dkrun='docker run -it $(docker build -q .)' 3 3 alias lz='lazy docker' 4 4 5 + alias compose='docker compose' 6 + 5 7 export containers="$HOME/.containers" 6 8 7 9 dc(){ ··· 13 15 open -a "OrbStack" 14 16 15 17 if [[ -f "$1" ]]; then 16 - docker-compose -f "$1" "${2:-up}" "${@:2}" 18 + docker-compose -f "$1" "${2:-up}" "${@:2}" 17 19 elif [[ -d "$1" ]]; then 18 20 docker-compose -f "$1/docker-compose.yml" "${2:-up}" "${@:2}" 19 21 else