remove helper start/stop scripts

- update start, stop and pull script
- fix ctop install and add marker
- organize secrets
- remove old zsh playbook
This commit is contained in:
quinm0
2026-03-06 17:16:29 -05:00
parent f1461ba359
commit ab1f0cc75d
30 changed files with 150 additions and 162 deletions
+10 -3
View File
@@ -1,6 +1,13 @@
#!/bin/bash
SERVICE_NAMES=("paperless" "jellyfin" "immich" "navidrome" "downloadin" "matrix")
SERVICE_NAMES=(
"paperless"
"jellyfin"
"immich"
"navidrome"
"downloadin"
"matrix"
)
for SERVICE in "${SERVICE_NAMES[@]}"; do
bash $(pwd)/${SERVICE}-pull.sh
done
docker compose --env-file /etc/.soupclown.env -f $(pwd)/${SERVICE}-compose.yaml pull
done