Files
soupclown/docker-compose/all-pull.sh
T
2026-04-07 19:00:56 -04:00

13 lines
269 B
Bash
Executable File

#!/run/current-system/sw/bin/bash
SERVICE_NAMES=(
# "paperless"
# "immich"
"navidrome"
"downloadin"
# "matrix"
)
for SERVICE in "${SERVICE_NAMES[@]}"; do
docker compose --env-file /etc/.soupclown.env -f $(pwd)/${SERVICE}-compose.yaml pull
done