Files
templates/blueprints/obsidian-livesync/docker-compose.yml
Jainil Prajapati 🪐 f973fe08e8 new feature related to Obsidian LiveSync (#260)
* new feature related to Obsidian LiveSync

* Update meta.json with new software entries and modifications

- Added new applications: Ackee, Activepieces, Actual Budget, AdGuard Home, Adminer, Affine Pro, AList, AllTube, Ampache, AnonUpload, Answer, AnythingLLM, Apprise API, Appsmith, Aptabase, ArangoDB, Argilla, Audiobookshelf, BabyBuddy, Backrest, Baikal, Barrage, Bazarr, Beszel, Baserow, Budibase, and more.
- Updated existing entries with new descriptions, links, and tags.
- Removed duplicates and ensured consistent formatting across the file.
- Enhanced application descriptions for clarity and accuracy.

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-08-22 22:51:43 -06:00

17 lines
336 B
YAML

version: "3.8"
services:
couchdb:
image: couchdb:latest
user: "0:0"
environment:
- COUCHDB_USER=${COUCHDB_USER}
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
volumes:
- couchdb-data:/opt/couchdb/data
- ../files/local.ini:/opt/couchdb/etc/local.ini
ports:
- 5984
volumes:
couchdb-data: {}