A Docker Compose script to generate a test JIRA datacenter environment in a few steps
- First, clone the repo and start the
database
andnode1
containers
git clone https://github.com/fllaca/jira-datacenter-docker
cd jira-datacenter-docker
# this init script is necessary to change the permissions of the JIRA home folders so the JIRA daemon can write to them
./init.sh
docker-compose up -d database
# wait a few seconds until database is ready, then:
docker-compose up -d node1
- Then you can go to http://localhost:9090 and configure the initial setup for JIRA:
- After that, start
node2
andproxy
:
docker-compose up -d node2 proxy
- Then you can go to your 80 port (the one the balancer is listening on) and connect to JIRA: http://localhost. You can change the ports editing
docker-compose.yml