Running Atlassian Jira application in a docker container
4.2K
To quickly get a latest version of JIRA instance, use the following command:
docker run -d -p 8080:8080 addteq/jira:latest
Then browse to http://[dockerhost]:8080 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/jira:latest
If Jira is run behind a reverse proxy server, then you need to make Jira aware of the setup by providing "SERVERNAME" parameter to set the proxy server.
docker run -d -p 8080:8080 -e "SERVERNAME=[FQDN]" addteq/jira:latest
Default configuration for Jira is already done and can be customized by passing arguments.
| Environment Variable | Default Value | Description |
|---|---|---|
| JVM_MINIMUM_MEMORY | 1024m . | The minimum heap size of the JVM |
| JVM_MAXIMUM_MEMORY | 1024m | The maximum heap size of the JVM |
You can run the previous versions of Jira using the respective tag. For example, to setup Jira 7.0.4 version, run the below command.
docker run -d -p 8080:8080 addteq/jira:7.0.4
The Jira instance is run as the Jira user. Jira 7.13+ versions uses AdoptJDK , but the previous versions use a image of oracle-java in this repo.
Content type
Image
Digest
Size
529.6 MB
Last updated
over 4 years ago
docker pull addteq/jira