Files
soupclown/src/docker-compose/all-down.sh
T
2026-03-22 14:48:43 -04:00

13 lines
271 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 down
done