mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* feat: add Minepanel template * fix: pin images to v1.7.1 and use http for URLs * fix: remove explicit ports, Dokploy handles proxying * chore: process and sort meta.json * fix: consolidate domain variables to main_domain * fix: add version field to docker-compose.yml
29 lines
625 B
TOML
29 lines
625 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
jwt_secret = "${base64:32}"
|
|
client_username = "admin"
|
|
client_password = "${password:16}"
|
|
default_language = "en"
|
|
|
|
[config]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "frontend"
|
|
port = 3_000
|
|
host = "${main_domain}"
|
|
|
|
[[config.domains]]
|
|
serviceName = "backend"
|
|
port = 8_091
|
|
host = "api-${main_domain}"
|
|
|
|
[config.env]
|
|
JWT_SECRET = "${jwt_secret}"
|
|
CLIENT_USERNAME = "${client_username}"
|
|
CLIENT_PASSWORD = "${client_password}"
|
|
FRONTEND_URL = "http://${main_domain}"
|
|
NEXT_PUBLIC_BACKEND_URL = "http://api-${main_domain}"
|
|
NEXT_PUBLIC_DEFAULT_LANGUAGE = "${default_language}"
|
|
BASE_DIR = "/app"
|