mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-08-02 18:50:11 +08:00
14 lines
No EOL
407 B
YAML
14 lines
No EOL
407 B
YAML
services:
|
|
obsidian-livesync:
|
|
image: couchdb:latest
|
|
container_name: obsidian-livesync
|
|
user: 1000:1000
|
|
environment:
|
|
- COUCHDB_USER=obsidian
|
|
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
|
|
volumes:
|
|
- /mnt/docker/obsidian-livesync/data:/opt/couchdb/data
|
|
- /mnt/docker/obsidian-livesync/config:/opt/couchdb/etc/local.d
|
|
ports:
|
|
- 5984:5984
|
|
restart: unless-stopped |