Files
homelab-infra/obsidian-livesync/docker-compose.yml
1jamesthompson1 716baafbc1 AI given structure
2026-03-23 16:06:42 +13:00

16 lines
374 B
YAML

services:
couchdb:
image: couchdb:latest
container_name: obsidian-livesync
restart: unless-stopped
ports:
- "${COUCHDB_PORT:-5984}:5984"
volumes:
- ${STORAGE_PATH}/obsidian:/opt/couchdb/data
env_file:
- ../.env
- .env
environment:
- COUCHDB_USER=${COUCHDB_USER:-admin}
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}