mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-05 05:55:22 +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
780 B
TOML
34 lines
780 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_password = "${password:32}"
|
|
jwt_secret = "${jwt:db_password}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "vikunja"
|
|
port = 3456
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
VIKUNJA_SERVICE_PUBLICURL = "https://${main_domain}"
|
|
VIKUNJA_DATABASE_HOST = "db"
|
|
VIKUNJA_DATABASE_PASSWORD = "${db_password}"
|
|
VIKUNJA_DATABASE_TYPE = "postgres"
|
|
VIKUNJA_DATABASE_USER = "vikunja"
|
|
VIKUNJA_DATABASE_DATABASE = "vikunja"
|
|
VIKUNJA_SERVICE_JWTSECRET = "${jwt_secret}"
|
|
|
|
POSTGRES_PASSWORD = "${db_password}"
|
|
POSTGRES_USER = "vikunja"
|
|
POSTGRES_DB = "vikunja"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "vikunja"
|
|
volumeName = "vikunja-files"
|
|
mountPath = "/app/vikunja/files"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "db"
|
|
volumeName = "vikunja-db"
|
|
mountPath = "/var/lib/postgresql/data"
|