mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Confluence blueprint with Docker Compose and configuration files
- 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.
This commit is contained in:
17
blueprints/confluence/template.toml
Normal file
17
blueprints/confluence/template.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[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"
|
||||
Reference in New Issue
Block a user