2024-07-29 20:51:44 +02:00
# https://github.com/vrtmrz/obsidian-livesync
# Self-hosted LiveSync is a community-implemented synchronization plugin, available on every obsidian-compatible platform and using CouchDB or Object Storage
# http://localhost:5984/_utils/
name : obsidian-livesync
services :
couchdb :
image : couchdb:latest
container_name : obsidian-livesync
user : 0 : 0
environment :
- COUCHDB_USER=user
- COUCHDB_PASSWORD=testitest
volumes :
2024-07-30 15:53:31 +02:00
- ./data:/opt/couchdb/data
- ./config/local.ini:/opt/couchdb/etc/local.ini
2024-07-29 20:51:44 +02:00
# Ports not needed when already passed to Traefik
ports :
2024-07-30 15:53:31 +02:00
- 5984 : 5984
networks :
- proxy
networks :
proxy :
external : true