DCCLIP-586: Updated README.

This commit is contained in:
Yifei Zhang 2023-09-18 16:20:32 +10:00
parent b8bed7ea61
commit 4eceaf4610

View File

@ -39,7 +39,7 @@ configured with `CONFLUENCE_SHARED_HOME`.
Start Atlassian Confluence Server:
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 atlassian/confluence
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 atlassian/confluence
**Success**. Confluence is now available on <http://localhost:8090>*
@ -233,6 +233,18 @@ page.
### Optional database settings
* `ATL_JDBC_SECRET_CLASS`
[Encryption class](https://confluence.atlassian.com/doc/encrypt-database-password-1115674739.html) for the database password.
Depending on the secret class, the value of `ATL_JDBC_PASSWORD` will differ. Defaults to plaintext.
Starting from 8.6 [AWS SecretsManager](https://link to CAC doc) is supported.
Example:
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -e ATL_JDBC_SECRET_CLASS='com.atlassian.secrets.store.aws.AwsSecretsManagerStore' -e ATL_JDBC_PASSWORD='{"region": "us-east-1", "secretId": "mysecret", "secretPointer": "password"}' atlassian/confluence
The following variables are for the database connection pool, and are
optional.