mirror of
https://bitbucket.org/atlassian-docker/docker-atlassian-confluence-server.git
synced 2024-08-30 18:22:16 +00:00
jvm: set a var for XX:ReservedCodeCacheSize
Signed-off-by: Yoan Blanc <yoan@dosimple.ch>
This commit is contained in:
parent
c98f068810
commit
12b2f18a0b
@ -43,7 +43,8 @@ RUN groupadd --gid ${RUN_GID} ${RUN_GROUP} \
|
|||||||
&& chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/work \
|
&& chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/work \
|
||||||
&& chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_HOME} \
|
&& chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_HOME} \
|
||||||
\
|
\
|
||||||
&& sed -i -e 's/-Xms\([0-9]\+[kmg]\) -Xmx\([0-9]\+[kmg]\)/-Xms\${JVM_MINIMUM_MEMORY:=\1} -Xmx\${JVM_MAXIMUM_MEMORY:=\2} \${JVM_SUPPORT_RECOMMENDED_ARGS} -Dconfluence.home=\${CONFLUENCE_HOME}/g' ${CONFLUENCE_INSTALL_DIR}/bin/setenv.sh
|
&& sed -i -e 's/-Xms\([0-9]\+[kmg]\) -Xmx\([0-9]\+[kmg]\)/-Xms\${JVM_MINIMUM_MEMORY:=\1} -Xmx\${JVM_MAXIMUM_MEMORY:=\2} \${JVM_SUPPORT_RECOMMENDED_ARGS} -Dconfluence.home=\${CONFLUENCE_HOME}/g' ${CONFLUENCE_INSTALL_DIR}/bin/setenv.sh \
|
||||||
|
&& sed -i -e 's/\(-XX:ReservedCodeCacheSize=)\([0-9]\+[kmg]\)/\1${JVM_RESERVED_CODE_CACHE_SIZE:=\2}/g' ${CONFLUENCE_INSTALL_DIR}/bin/setenv.sh
|
||||||
|
|
||||||
VOLUME ["${CONFLUENCE_HOME}"] # Must be declared after setting perms
|
VOLUME ["${CONFLUENCE_HOME}"] # Must be declared after setting perms
|
||||||
|
|
||||||
|
@ -68,6 +68,10 @@ variables.
|
|||||||
|
|
||||||
The maximum heap size of the JVM
|
The maximum heap size of the JVM
|
||||||
|
|
||||||
|
* `JVM_RESERVED_CODE_CACHE_SIZE` (default: 256m)
|
||||||
|
|
||||||
|
The reserved code cache size of the JVM
|
||||||
|
|
||||||
## Tomcat and Reverse Proxy Settings
|
## Tomcat and Reverse Proxy Settings
|
||||||
|
|
||||||
If Confluence is run behind a reverse proxy server (e.g. a load-balancer or
|
If Confluence is run behind a reverse proxy server (e.g. a load-balancer or
|
||||||
|
Loading…
Reference in New Issue
Block a user