mirror of
https://bitbucket.org/atlassian-docker/docker-atlassian-confluence-server.git
synced 2024-08-30 18:22:16 +00:00
DCCLIP-586: Split the docker command into lines for better readability.
This commit is contained in:
parent
7c91771406
commit
5b837893b9
@ -160,7 +160,7 @@ Example:
|
||||
|
||||
docker run -e JVM_SUPPORT_RECOMMENDED_ARGS=-Djavax.net.ssl.trustStore=/var/atlassian/application-data/confluence/cacerts -v confluenceVolume:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 atlassian/confluence
|
||||
|
||||
For additional settings that can be supplied, see: [Recognized System Properties](https://confluence.atlassian.com/doc/recognized-system-properties-190430.html)
|
||||
For additional settings that can be supplied, see: [Recognized System Properties](https://confluence.atlassian.com/doc/recognized-system-properties-190430.html)
|
||||
|
||||
## Confluence-specific settings
|
||||
|
||||
@ -247,7 +247,12 @@ For non-clustered Confluence, manually edit `jdbc.password.decrypter.classname`
|
||||
For clustered Confluence, set this property while making sure environment variables in [cluster configuration](#cluster-configuration) are kept intact as well.
|
||||
Example:
|
||||
|
||||
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 -e ATL_JDBC_SECRET_CLASS='com.atlassian.secrets.store.aws.AwsSecretsManagerStore' -e ATL_JDBC_PASSWORD='{"region": "us-east-1", "secretId": "mysecret", "secretPointer": "password"}' -e ATL_CLUSTER_RELATED_VARIABLES='variable-value' -e atlassian/confluence
|
||||
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence \
|
||||
--name="confluence" -d -p 8090:8090 -p 8091:8091 \
|
||||
-e ATL_JDBC_SECRET_CLASS='com.atlassian.secrets.store.aws.AwsSecretsManagerStore' \
|
||||
-e ATL_JDBC_PASSWORD='{"region": "us-east-1", "secretId": "mysecret", "secretPointer": "password"}' \
|
||||
-e ATL_CLUSTER_RELATED_VARIABLES='variable-value' \
|
||||
atlassian/confluence
|
||||
|
||||
|
||||
The following variables are for the database connection pool, and are
|
||||
|
Loading…
Reference in New Issue
Block a user