AI given structure
This commit is contained in:
6
obsidian-livesync/.env.example
Normal file
6
obsidian-livesync/.env.example
Normal file
@@ -0,0 +1,6 @@
|
||||
# obsidian/.env
|
||||
# Copy to .env and fill in real values. NEVER commit .env.
|
||||
|
||||
COUCHDB_USER=admin
|
||||
COUCHDB_PASSWORD=REPLACE_WITH_STRONG_PASSWORD
|
||||
COUCHDB_PORT=5984
|
||||
15
obsidian-livesync/docker-compose.yml
Normal file
15
obsidian-livesync/docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
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}
|
||||
Reference in New Issue
Block a user