mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
add missing services from prod: backlog-manager, navidrome, nginx, obsidian-livesync, pocketbase, wg
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
db67c88d04
commit
de42032fde
8 changed files with 115 additions and 0 deletions
2
obsidian-livesync/.env.example
Normal file
2
obsidian-livesync/.env.example
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
username=
|
||||
password=
|
||||
17
obsidian-livesync/docker-compose.yaml
Normal file
17
obsidian-livesync/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
couchdb:
|
||||
image: couchdb:latest
|
||||
container_name: couchdb-obsidian
|
||||
volumes:
|
||||
- obsidian_data:/opt/couchdb/data
|
||||
- obsidian_etc:/opt/couchdb/etc/local.d
|
||||
environment:
|
||||
- COUCHDB_USER=${username}
|
||||
- COUCHDB_PASSWORD=${password}
|
||||
ports:
|
||||
- 5984:5984
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
obsidian_data:
|
||||
obsidian_etc:
|
||||
Loading…
Add table
Add a link
Reference in a new issue