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
51 lines
1.0 KiB
TOML
51 lines
1.0 KiB
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
APP_ADMIN_EMAIL = "${email}"
|
|
APP_ADMIN_PASSWORD = "${password:16}"
|
|
APP_TIMEZONE = "UTC"
|
|
|
|
DB_DATABASE = "hortusfox"
|
|
DB_USERNAME = "hortususer"
|
|
DB_PASSWORD = "${password:20}"
|
|
MARIADB_ROOT_PASSWORD = "${password:24}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "app"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
APP_ADMIN_EMAIL = "${APP_ADMIN_EMAIL}"
|
|
APP_ADMIN_PASSWORD = "${APP_ADMIN_PASSWORD}"
|
|
APP_TIMEZONE = "${APP_TIMEZONE}"
|
|
DB_DATABASE = "${DB_DATABASE}"
|
|
DB_USERNAME = "${DB_USERNAME}"
|
|
DB_PASSWORD = "${DB_PASSWORD}"
|
|
MARIADB_ROOT_PASSWORD = "${MARIADB_ROOT_PASSWORD}"
|
|
|
|
[[config.mounts]]
|
|
name = "app_images"
|
|
mountPath = "/var/www/html/public/img"
|
|
|
|
[[config.mounts]]
|
|
name = "app_logs"
|
|
mountPath = "/var/www/html/app/logs"
|
|
|
|
[[config.mounts]]
|
|
name = "app_backup"
|
|
mountPath = "/var/www/html/public/backup"
|
|
|
|
[[config.mounts]]
|
|
name = "app_themes"
|
|
mountPath = "/var/www/html/public/themes"
|
|
|
|
[[config.mounts]]
|
|
name = "app_migrate"
|
|
mountPath = "/var/www/html/app/migrations"
|
|
|
|
[[config.mounts]]
|
|
name = "db_data"
|
|
mountPath = "/var/lib/mysql"
|