This image can be used to get an instance of Confluence up and running.
3.7K
To quickly get a latest version of Confluence instance, use the following command:
docker run -d -p 8090:8090 addteq/confluence:latest
Then browse to http://[dockerhost]:8090 and complete the configuration.
Alternatively, you can run the below command to run the app on a random port. "-P" will publish all exposed ports to random ports
docker run -d -P addteq/confluence:latest
If Confluence is run behind a reverse proxy server, then you need to make Confluence aware of the setup by providing "SERVERNAME" parameter to set the proxy server.
docker run -d -p 8090:8090 -e "SERVERNAME=[FQDN]" addteq/confluence:latest
Default configuration for Confluence is already done and can be customized by passing arguments.
| Environment Variable | Default Value | Description |
|---|---|---|
| JVM_MINIMUM_MEMORY | 1536m . | The minimum heap size of the JVM |
| JVM_MAXIMUM_MEMORY | 1536m | The maximum heap size of the JVM |
You can run the previous versions of Confluence using the respective tag. For example, to setup Confluence 6.4.2 version, run the below command.
docker run -d -p 8090:8090 addteq/confluence:6.4.2
The confluence instance is run as the confluence user. Confluence 6.13+ versions uses AdoptJDK , but the previous versions use a image of oracle-java in this repo.
Content type
Image
Digest
Size
869.1 MB
Last updated
almost 5 years ago
docker pull addteq/confluence