mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Enhance meta.json: format tag lists for consistency, add new entries for KaraKeep, FreshRSS, and Movary with detailed descriptions and links. * Update blueprints/freshrss/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/movary/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
25 lines
563 B
TOML
25 lines
563 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
nextauth_secret = "${password:64}"
|
|
meili_master_key = "${password:32}"
|
|
|
|
[config.env]
|
|
KARAKEEP_VERSION = "release"
|
|
NEXTAUTH_SECRET = "${nextauth_secret}"
|
|
MEILI_MASTER_KEY = "${meili_master_key}"
|
|
NEXTAUTH_URL = "http://${main_domain}"
|
|
DATA_DIR = "/data"
|
|
DISABLE_SIGNUPS = "false"
|
|
# Meilisearch config
|
|
MEILI_ADDR = "http://meilisearch:7700"
|
|
# Chrome config
|
|
BROWSER_WEB_URL = "ws://chrome:9222"
|
|
BROWSER_CONNECT_ONDEMAND = "true"
|
|
|
|
[config]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "web"
|
|
port = 3000
|
|
host = "${main_domain}" |