Files
templates/blueprints/minepanel/template.toml
Pablo Moraga Sandoval b2e91749d3 Feat/minepanel template (#657)
* 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
2026-01-28 00:30:45 -06:00

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"