mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-23 16:15:22 +02:00
* feat: add Openinary template * feat: update Openinary configuration to support ALLOWED_ORIGIN and refactor domain variable
40 lines
935 B
TOML
40 lines
935 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
image_tag = "latest"
|
|
better_auth_secret = "${password:64}"
|
|
better_auth_url = "http://${main_domain}"
|
|
allowed_origin = "http://${main_domain}"
|
|
next_public_api_base_url = "/api"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "openinary"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
IMAGE_TAG = "${image_tag}"
|
|
BETTER_AUTH_SECRET = "${better_auth_secret}"
|
|
BETTER_AUTH_URL = "${better_auth_url}"
|
|
ALLOWED_ORIGIN = "${allowed_origin}"
|
|
NEXT_PUBLIC_API_BASE_URL = "${next_public_api_base_url}"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "openinary"
|
|
volumeName = "cache-data"
|
|
mountPath = "/app/apps/api/cache"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "openinary"
|
|
volumeName = "public-files"
|
|
mountPath = "/app/apps/api/public"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "openinary"
|
|
volumeName = "db-data"
|
|
mountPath = "/app/data"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "openinary"
|
|
volumeName = "db-data"
|
|
mountPath = "/app/web-standalone/data" |