mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-04 13:35:23 +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
34 lines
650 B
TOML
34 lines
650 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
app_password = "${password:32}"
|
|
db_password = "${password:24}"
|
|
db_user = "kitchenowl"
|
|
db_name = "kitchenowl"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "web"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
JWT_SECRET_KEY = "${app_password}"
|
|
DB_DRIVER = "postgresql"
|
|
DB_HOST = "db"
|
|
DB_NAME = "${db_name}"
|
|
DB_USER = "${db_user}"
|
|
DB_PASSWORD = "${db_password}"
|
|
|
|
# Persist uploads/attachments
|
|
[[config.mounts]]
|
|
serviceName = "web"
|
|
volumeName = "kitchenowl_files"
|
|
mountPath = "/data"
|
|
|
|
# Persist Postgres data
|
|
[[config.mounts]]
|
|
serviceName = "db"
|
|
volumeName = "kitchenowl_db"
|
|
mountPath = "/var/lib/postgresql/data"
|