{"id":18607364,"url":"https://github.com/addono/docker-jira-software-standalone","last_synced_at":"2025-04-10T20:32:13.004Z","repository":{"id":39919249,"uuid":"265857837","full_name":"Addono/docker-jira-software-standalone","owner":"Addono","description":"Docker image for running Jira Software standalone for development purposes.","archived":false,"fork":false,"pushed_at":"2022-12-22T10:34:43.000Z","size":41,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T04:20:37.355Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/addono/jira-software-standalone","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Addono.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-21T13:38:07.000Z","updated_at":"2024-07-09T20:27:47.000Z","dependencies_parsed_at":"2023-01-30T07:15:36.977Z","dependency_job_id":null,"html_url":"https://github.com/Addono/docker-jira-software-standalone","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fdocker-jira-software-standalone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fdocker-jira-software-standalone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fdocker-jira-software-standalone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fdocker-jira-software-standalone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Addono","download_url":"https://codeload.github.com/Addono/docker-jira-software-standalone/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248290041,"owners_count":21078923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T02:29:11.766Z","updated_at":"2025-04-10T20:32:12.710Z","avatar_url":"https://github.com/Addono.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Jira Software Standalone\n\n\n[![License](https://img.shields.io/github/license/Addono/docker-jira-software-standalone?style=flat-square)](https://github.com/Addono/docker-jira-software-standalone/blob/master/LICENSE)\n[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://img.shields.io/badge/project%20status-Active-greengrass?style=flat-square)](https://www.repostatus.org/#active)\n![GitHub Workflow Status - Docker](https://img.shields.io/github/actions/workflow/status/Addono/docker-jira-software-standalone/dockerpublish.yml?style=flat-square)\n[\n![Docker Image Pulls (all-time)](https://img.shields.io/docker/pulls/addono/jira-software-standalone?style=flat-square)\n![Docker Image Version (latest semver)](https://img.shields.io/docker/v/addono/jira-software-standalone?sort=semver\u0026style=flat-square)\n](https://hub.docker.com/r/addono/jira-software-standalone)\u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\n\n## 📝 Table of Contents\n\n- [About](#about)\n- [Usage](#usage)\n- [Contributors](#contributors)\n\n## 🧐 About \u003ca name = \"about\"\u003e\u003c/a\u003e\n\nDockerized version of Jira Software to easily spin up development versions without having to deal with the hassle of managing licences.\n\nThis image uses  `atlas-cli` to create an empty Jira Software instance by launching a development environment for an empty plugin. Starting this development environment can be very slow (expect it to take more than 5 minutes), so this is best used for asyncronous tasks, such as running in your CI pipeline.\n\n## 🎈 Usage \u003ca name=\"usage\"\u003e\u003c/a\u003e\n\nThis image is published to [Docker Hub](https://hub.docker.com/r/addono/jira-software-standalone). Using them is easy, to run it in the foreground:\n```bash\ndocker run -it -p 2990:2990 --name jira addono/jira-software-standalone\n```\n\nOr in detached mode as to run it in the background:\n```bash\ndocker run -d -it -p 2990:2990 --name jira addono/jira-software-standalone\n```\n\n_Note: Make sure that the `-i` flag is enabled, as without it the server will exit the moment it completed booting._\n\n## Travis CI\n\nThis is one way on how to use this image in a Travis CI pipeline. Add the following lines to your `.travis.yaml` file and access it at the location specified in the environment variables.\n\n```yaml\n# Let the CI runner provision Docker for us\nservices:\n  - docker\n\n# Spin up the Jira instance before we run our jobs\nbefore_install:\n# Launch a Jira instance in detached mode\n  - docker run -dit -p 2990:2990 --name jira addono/jira-software-standalone\n# Wait until Jira has booted\n  - until $(curl -u $CI_JIRA_ADMIN:$CI_JIRA_ADMIN_PASSWORD --output /dev/null --silent --head --fail $CI_JIRA_URL/rest/api/2/permissions); do sleep 5; done\n\n# Set the default hostname and admin user credentials as environment variables\nenv:\n  global:\n    - CI_JIRA_URL=http://localhost:2990/jira\n    - CI_JIRA_ADMIN=admin\n    - CI_JIRA_ADMIN_PASSWORD=admin\n```\n\n\n\n## ✨ Contributors \u003ca name = \"contributors\"\u003e\u003c/a\u003e\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://aknapen.nl\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/15435678?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdriaan Knapen\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/Addono/docker-jira-software-standalone/commits?author=addono\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/Addono/docker-jira-software-standalone/commits?author=addono\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/Addono/docker-jira-software-standalone/commits?author=addono\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faddono%2Fdocker-jira-software-standalone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faddono%2Fdocker-jira-software-standalone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faddono%2Fdocker-jira-software-standalone/lists"}