Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mungell/jirabox
Vagrant box for setting up local Jira server
https://github.com/mungell/jirabox
ansible java jira postgres vagrant
Last synced: about 1 month ago
JSON representation
Vagrant box for setting up local Jira server
- Host: GitHub
- URL: https://github.com/mungell/jirabox
- Owner: MunGell
- Created: 2017-01-29T20:39:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-30T22:31:27.000Z (almost 8 years ago)
- Last Synced: 2024-05-02T01:08:57.373Z (8 months ago)
- Topics: ansible, java, jira, postgres, vagrant
- Language: Shell
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JiraBox
Vagrant box for setting up local Jira server.
Steps:
- Create an `ansible/vars/all.yml` file and configure your setup there.
For example, this is how it might look like:
```yaml
---
vagrant_local:
hostname: jira
pgsql:
database: jira
user: jira
password: secret
java:
version: 8
subversion: 121
install_dir: /usr/local/java
set_javahome: true
jira:
gid: ~
hash_salt: jira
pass: secret
uid: ~
user: jira
```- Download JRE from Oracle website to `ansible/files` directory e.g. `server-jre-8u121-linux-x64.tar.gz`. Update your variable with the version of Java you downloaded.
- Run `vagrant up`