fix: add profile flags to all docker compose commands and complete env vars

All services in docker-compose.yml are behind profiles (dev/ops), but the
maintenance scripts called docker compose without --profile, so no services
were detected or built. Added --profile dev --profile ops to BuildAll.sh,
StatusCheck.sh, and all relevant maintenance.sh commands.

Also:
- Added missing env vars for 8 newer servers to .env.example (beszel, gitea,
  grafana, ha, limesurvey, linkwarden, superset)
- Fixed maintenance.sh validate to use validate-all.sh instead of nonexistent
  validate-mcp.sh
This commit is contained in:
2026-07-30 12:15:49 -05:00
parent b3a810ba07
commit b595e26d62
4 changed files with 42 additions and 11 deletions
+31
View File
@@ -98,3 +98,34 @@ PAPERLESS_TOKEN=dummy-paperless-token-replace-with-real
ACTUAL_SERVER_URL=https://actual.example.com
ACTUAL_PASSWORD=dummy-password-replace-with-real
ACTUAL_BUDGET_SYNC_ID=dummy-budget-sync-id
# Beszel
BESZEL_URL=https://beszel.example.com
BESZEL_USERNAME=dummy-username
BESZEL_PASSWORD=dummy-password-replace-with-real
# Gitea
GITEA_URL=https://gitea.example.com
GITEA_TOKEN=dummy-token-replace-with-real
# Grafana
GRAFANA_URL=https://grafana.example.com
GRAFANA_TOKEN=dummy-token-replace-with-real
# Home Assistant
HOMEASSISTANT_URL=https://ha.example.com
HOMEASSISTANT_TOKEN=dummy-token-replace-with-real
# Limesurvey
LIMESURVEY_URL=https://limesurvey.example.com
LIMESURVEY_USERNAME=admin
LIMESURVEY_PASSWORD=dummy-password-replace-with-real
# Linkwarden
LINKWARDEN_URL=https://linkwarden.example.com
LINKWARDEN_TOKEN=dummy-token-replace-with-real
# Superset
SUPERSET_URL=https://superset.example.com
SUPERSET_USERNAME=admin
SUPERSET_PASSWORD=dummy-password-replace-with-real