komodo-stacks/stacks/obsidian-livesync/compose.yaml
Amber (Komodo Assistant) 9baedc40e9 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
2026-03-27 13:09:38 +01:00

27 lines
636 B
YAML

services:
obsidian-livesync:
image: oleduc/docker-obsidian-livesync-couchdb:latest
container_name: obsidian-livesync
restart: unless-stopped
ports:
- "127.0.0.1:5984:5984"
volumes:
- obsidian_data:/opt/couchdb/data
environment:
- COUCHDB_USER=${OBSIDIAN_USER:_obsidian}
- COUCHDB_PASSWORD=${OBSIDIAN_PASSWORD}
networks:
- obsidian-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5984/_up"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
volumes:
obsidian_data:
networks:
obsidian-network:
driver: bridge