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

@ -8,8 +8,8 @@ services:
volumes:
- gotify_data:/app/data
environment:
- GOTIFY_DEFAULTUSER_NAME=${SECRET:gotify-admin-user}
- GOTIFY_DEFAULTUSER_PASS=${SECRET:gotify-admin-pass}
- GOTIFY_DEFAULTUSER_NAME=${GOTIFY_ADMIN_USER}
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_ADMIN_PASS}
networks:
- gotify-network
healthcheck: