cmc/dotfiles

Using GNU Stow to manage my dotfiles.

clone: git clone https://gitbay.org/cmc/dotfiles.git

898bc110cddb729b3f562007f172b89542f7a9d4

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-04-30T22:11:35Z

add docker-update command
 common/zsh/.zshrc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/zsh/.zshrc b/common/zsh/.zshrc
index 930ee3b..4ca2e0a 100644
--- a/common/zsh/.zshrc
+++ b/common/zsh/.zshrc
@@ -97,6 +97,7 @@ alias find="fd"
 alias emacs="emacs -nw"
 alias xclean="fd -H '.DS_Store' -t f -x rm"
 alias python="python3"
+alias docker-update='for d in ~/docker/*/; do (cd "$d" && sudo docker compose pull && sudo docker compose up -d); done'
 
 # Git
 alias g='git'