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:
- obsidian_data:/opt/couchdb/data
environment:
- COUCHDB_USER=${OBSIDIAN_USER:-obsidian}
- COUCHDB_PASSWORD=${SECRET:obsidian-password}
- COUCHDB_USER=${OBSIDIAN_USER:_obsidian}
- COUCHDB_PASSWORD=${OBSIDIAN_PASSWORD}
networks:
- obsidian-network
healthcheck: