mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Add blueprints for wanderer and yamtrack applications with Docker configurations and templates * Add Vikunja blueprint * Add Tor Browser blueprint with Docker configuration and template * Add Picsur image hosting blueprint with Docker configuration and template * Create new blueprint for deploying Pastefy with MariaDB and OAuth support * Added Morsphs * Add KitchenOwl blueprint with Docker Compose configuration and template * Add Kokoro Web blueprint with Docker Compose configuration and template * added HortusFox * added gitingest * Add Etherpad blueprint with Docker Compose configuration and template * Add drawnix blueprint with Docker Compose configuration and template * arranged Meta
47 lines
904 B
TOML
47 lines
904 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
meili_master_key = "${password:32}"
|
|
pocketbase_key = "${password:32}"
|
|
upload_user = "${username}"
|
|
upload_password = "${password:16}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "web"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[[config.domains]]
|
|
serviceName = "db"
|
|
port = 8090
|
|
host = "db.${main_domain}"
|
|
|
|
[[config.domains]]
|
|
serviceName = "search"
|
|
port = 7700
|
|
host = "search.${main_domain}"
|
|
|
|
[config.env]
|
|
MEILI_MASTER_KEY = "${meili_master_key}"
|
|
POCKETBASE_ENCRYPTION_KEY = "${pocketbase_key}"
|
|
UPLOAD_USER = "${upload_user}"
|
|
UPLOAD_PASSWORD = "${upload_password}"
|
|
ORIGIN = "http://${main_domain}"
|
|
|
|
|
|
[[config.mounts]]
|
|
serviceName = "search"
|
|
volumeName = "search-data"
|
|
mountPath = "/meili_data/data.ms"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "db"
|
|
volumeName = "db-data"
|
|
mountPath = "/pb_data"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "web"
|
|
volumeName = "uploads"
|
|
mountPath = "/app/uploads"
|