Sign inSign up

addteq/jira

By addteq

Updated over 4 years ago

Running Atlassian Jira application in a docker container

Image
2

4.2K

addteq/jira repository overview

Quick Start

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

Reverse Proxy

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

Customizations

Default configuration for Jira is already done and can be customized by passing arguments.

Environment VariableDefault ValueDescription
JVM_MINIMUM_MEMORY1024m .The minimum heap size of the JVM
JVM_MAXIMUM_MEMORY1024mThe maximum heap size of the JVM

Using Previous versions

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

Additional Information

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.

Tag summary

Content type

Image

Digest

Size

529.6 MB

Last updated

over 4 years ago

docker pull addteq/jira