migrate
Deploy authentik / deploy (push) Successful in 13s
Deploy dockhand / deploy (push) Successful in 7s
Deploy duplicati / deploy (push) Successful in 10s
Deploy immich / deploy (push) Failing after 6s
Deploy obsidian / deploy (push) Successful in 6s
Deploy Sencho / deploy (push) Failing after 5s
Deploy watchtower / deploy (push) Failing after 7s

This commit is contained in:
Mike McFetridge
2026-07-21 17:26:47 -04:00
parent 0aaca928ba
commit 64a0911d7b
15 changed files with 504 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
services:
couchdb-obsidian-livesync:
container_name: obsidian-livesync
# image: couchdb:3.3.3 # Specify a stable CouchDB version
image: 'docker.io/oleduc/docker-obsidian-livesync-couchdb:master'
environment:
# User and password for CouchDB admin access
- COUCHDB_USER=miker
- COUCHDB_PASSWORD=tw9222dvO91ZHb
- COUCHDB_DATABASE=obsidian
- SERVER_DOMAIN=https://obsidian.mikemcfetridge.com
# Optional: Set PUID, PGID, UMASK, and TZ for user/group permissions and timezone
- PUID=1000
- PGID=1000
- UMASK=0022
- TZ=America/New_York # Adjust timezone as needed
volumes:
# Mount a local directory for CouchDB data persistence
- /home/miker/docker/obsidian/data:/opt/couchdb/data
# Mount a local directory for CouchDB configuration files
- /home/miker/docker/obsidian/config:/opt/couchdb/etc/local.d
ports:
# Map CouchDB's default port 5984 to the host machine
- "5984:5984"
restart: unless-stopped # Ensure the container restarts automatically unless explicitly stopped
networks:
- main
networks:
main:
external: true # Tells Compose not to create this network