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
29 lines
605 B
TOML
29 lines
605 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
admin_password = "${password:32}"
|
|
postgres_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "app"
|
|
port = 9001
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
NODE_ENV = "production"
|
|
ADMIN_PASSWORD = "${admin_password}"
|
|
DB_CHARSET = "utf8mb4"
|
|
DB_HOST = "postgres"
|
|
DB_NAME = "etherpad"
|
|
DB_PASS = "${postgres_password}"
|
|
DB_PORT = "5432"
|
|
DB_TYPE = "postgres"
|
|
DB_USER = "admin"
|
|
DEFAULT_PAD_TEXT = " "
|
|
DISABLE_IP_LOGGING = "false"
|
|
SOFFICE = "null"
|
|
TRUST_PROXY = "true"
|
|
POSTGRES_DB = "etherpad"
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
POSTGRES_USER = "admin"
|