mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35: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
24 lines
531 B
TOML
24 lines
531 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:32}"
|
|
admin_password = "${password:32}"
|
|
jwt_secret = "${jwt:jwt_secret}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "picsur"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
"PICSUR_DB_PASSWORD" = "${postgres_password}"
|
|
"PICSUR_ADMIN_PASSWORD" = "${admin_password}"
|
|
"PICSUR_JWT_SECRET" = "${jwt_secret}"
|
|
"POSTGRES_PASSWORD" = "${postgres_password}"
|
|
|
|
[[config.mounts]]
|
|
name = "picsur-data"
|
|
serviceName = "picsur_postgres"
|
|
mountPath = "/var/lib/postgresql/data"
|