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:
parent
8dfb692826
commit
9baedc40e9
4 changed files with 7 additions and 7 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue