docker-scripts/confluence/latest/README.md

45 lines
1.4 KiB
Markdown
Raw Normal View History

2018-09-18 13:35:18 +03:00
![Atlassian Confluence Server](https://www.atlassian.com/dam/wac/legacy/confluence_logo_landing.png)
2018-09-18 16:10:00 +03:00
2018-09-18 13:35:18 +03:00
# Overview
2018-09-18 16:10:00 +03:00
This Docker unofficial container makes it easy to get an instance of Confluence up and running.
2018-09-18 13:35:18 +03:00
## Memory / Heap Size
If you need to override Confluence Server's default memory allocation, you can control the minimum heap (Xms) and maximum heap (Xmx) via the below environment variables.
* `JVM_MINIMUM_MEMORY` (default: 1024m)
The minimum heap size of the JVM
* `JVM_MAXIMUM_MEMORY` (default: 1024m)
The maximum heap size of the JVM
## Reverse Proxy Settings
If Confluence is run behind a reverse proxy server, then you need to specify extra options to make Confluence aware of the setup. They can be controlled via the below environment variables.
* `CATALINA_CONNECTOR_PROXYNAME` (default: NONE)
The reverse proxy's fully qualified hostname.
* `CATALINA_CONNECTOR_PROXYPORT` (default: NONE)
The reverse proxy's port number via which Confluence is accessed.
* `CATALINA_CONNECTOR_SCHEME` (default: http)
The protocol via which Confluence is accessed.
* `CATALINA_CONNECTOR_SECURE` (default: false)
Set 'true' if CATALINA_CONNECTOR_SCHEME is 'https'.
## JVM configuration
If you need to pass additional JVM arguments to Confluence such as specifying a custom trust store, you can add them via the below environment variable
2018-09-18 16:27:24 +03:00
* `JVM_SUPPORT_RECOMMENDED_ARGS`
2018-09-18 13:35:18 +03:00