mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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>
This commit is contained in:
committed by
GitHub
parent
d307b17f2b
commit
f973fe08e8
16
blueprints/obsidian-livesync/docker-compose.yml
Normal file
16
blueprints/obsidian-livesync/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
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: {}
|
||||
BIN
blueprints/obsidian-livesync/obsidian.png
Normal file
BIN
blueprints/obsidian-livesync/obsidian.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
22
blueprints/obsidian-livesync/template.toml
Normal file
22
blueprints/obsidian-livesync/template.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
COUCHDB_USER = "${username}"
|
||||
COUCHDB_PASSWORD = "${password:32}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "couchdb"
|
||||
port = 5984
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
COUCHDB_USER = "${COUCHDB_USER}"
|
||||
# Defines the password for the CouchDB admin user. Treat this like an API key.
|
||||
COUCHDB_PASSWORD = "${COUCHDB_PASSWORD}"
|
||||
|
||||
[[config.mounts]]
|
||||
filePath = "local.ini"
|
||||
content = """
|
||||
[chttpd]
|
||||
bind_address = 0.0.0.0
|
||||
"""
|
||||
Reference in New Issue
Block a user