fix: Correct environment variable syntax for Komodo Secrets

- Replace ${SECRET:name} with ${NAME} format
- Replace hyphens with underscores in variable names
- Affected: gotify, grafana, vaultwarden, obsidian-livesync
This commit is contained in:
Amber (Komodo Assistant) 2026-03-27 13:09:38 +01:00
parent 8dfb692826
commit 9baedc40e9
4 changed files with 7 additions and 7 deletions

View file

@ -9,8 +9,8 @@ services:
- grafana_data:/var/lib/grafana
- grafana_config:/etc/grafana
environment:
- GF_SECURITY_ADMIN_USER=${SECRET:grafana-admin-user}
- GF_SECURITY_ADMIN_PASSWORD=${SECRET:grafana-admin-pass}
- GF_SECURITY_ADMIN_USER=${GRAFANA_ADMIN_USER}
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASS}
- GF_USERS_ALLOW_SIGN_UP=false
networks:
- monitoring