https://github.com/katharostech/docker_jira
Docker image for Atlassian JIRA
https://github.com/katharostech/docker_jira
Last synced: 11 months ago
JSON representation
Docker image for Atlassian JIRA
- Host: GitHub
- URL: https://github.com/katharostech/docker_jira
- Owner: katharostech
- License: unlicense
- Created: 2019-08-20T21:01:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T21:02:01.000Z (almost 7 years ago)
- Last Synced: 2025-07-21T03:28:50.932Z (11 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Build the version specific image
Building this image requires that you pass a version of the JIRA binary to the build command. This version must coincide directly with the build number that resides in the downloads section of BitBucket for this Git repo.
```bash
docker build --build-arg JIRA_VERSION=7.9.1 -t kadimasolutions/jira:7.9.1 .
```
# Run the container
Running the container can be done as follows. Take note that if any of the "db" environment variables are missing from the run command of this container, the container will assume that this is a new instance and it will treat it as such. You will be presented with the default installation wizard when navigating to the site. If this site will sit behind a reverse proxy for SSL Termination, you will need to provide the domain in the "ssl_term_domain" environment variable. Simply omit this variable if it does not apply to your instance. This feature was added since SSL termination is not handled by JIRA out-of-the-box, and additional config must be addressed accordingly.
```bash
docker run -h jira \
--name jira \
-e dbhost="mydbhost" \
-e dbport="3306" \
-e dbname="mydb" \
-e dbuser="mydbuser" \
-e dbpass="mydbpass" \
-e ssl_term_domain="jira.kadima.solutions" \
-p 80:8080 \
-dt kadimasolutions/jira:7.9.1
```