mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* added the mulesoft esb template * updated the compose and the meta.json * feat(mulesoft-esb): update image and add dynamic env configuration - Updated image to hari1367709/mule-esb:latest - Added dynamic HTTP_PORT for runtime port configuration - Added MULE_VERSION environment variable for Mule ESB version selection * updated the meta.json to use the version as latest * added a comment line to the template file * updated the mule runtime image * fix(mulesoft-esb): update ports configuration to follow guidelines * updated the port to use the env(HTTP_PORT) * Update docker-compose.yml * Update docker-compose.yml * Update blueprints/mulesoft-esb/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
24 lines
432 B
TOML
24 lines
432 B
TOML
|
|
# MuleSoft ESB Deployment Configuration
|
|
|
|
[variables]
|
|
main_domain = "${domain}"
|
|
timezone = "UTC"
|
|
mule_version = "4.9.0"
|
|
http_port = "8081"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "mule"
|
|
port = 8081
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
MULE_VERSION = "${mule_version}"
|
|
HTTP_PORT = "${http_port}"
|
|
MULE_HOME = "/opt/mule-standalone"
|
|
MULE_BASE = "/opt/mule-standalone"
|
|
TZ = "${timezone}"
|
|
MULE_VERBOSE_EXCEPTIONS = "true"
|