mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Confluence service, including environment variables for memory and domain configuration. - Added logo for Confluence. - Created template.toml for Confluence with default variables for configuration.
17 lines
367 B
TOML
17 lines
367 B
TOML
[variables]
|
|
DOMAIN = "${domain}"
|
|
JVM_MIN_MEM = "2048m"
|
|
JVM_MAX_MEM = "4096m"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "confluence"
|
|
port = 8090
|
|
host = "${DOMAIN}"
|
|
|
|
[config.env]
|
|
JVM_MINIMUM_MEMORY = "${JVM_MIN_MEM}"
|
|
JVM_MAXIMUM_MEMORY = "${JVM_MAX_MEM}"
|
|
CATALINA_CONNECTOR_PROXYNAME = "${DOMAIN}"
|
|
CATALINA_CONNECTOR_SCHEME = "http"
|
|
CATALINA_CONNECTOR_SECURE = "true" |