alpha
Login
or
Join now
xcc.es
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles
shell
zinit
zsh
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update docker.zsh
author
Morgan Williams
date
4 months ago
(Mar 17, 2026, 8:08 PM +0100)
commit
850d2c20
850d2c2086769f256a98e4101b34d04c3fa3c7a0
parent
c83c2ccc
c83c2ccc160d816903547de93f52f2621c0f738b
+3
-1
1 changed file
Expand all
Collapse all
Unified
Split
docker.zsh
+3
-1
docker.zsh
View file
Reviewed
···
2
2
alias dkrun='docker run -it $(docker build -q .)'
3
3
alias lz='lazy docker'
4
4
5
5
+
alias compose='docker compose'
6
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
16
-
docker-compose -f "$1" "${2:-up}" "${@:2}"
18
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