-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (27 loc) · 924 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (27 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
jira:
build: ./.docker
environment:
- JVM_SUPPORT_RECOMMENDED_ARGS=-Xdebug -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 -Dquickreload.dirs=/plugin -Dupm.plugin.upload.enabled=true -Datlassian.upm.signature.check.upload.disabled=true -Datlassian.upm.signature.check.disabled=true
ports:
- 5005:5005
- 8080:8080
volumes:
- ./target/quickreload:/plugin
depends_on:
postgres:
condition: service_healthy
postgres:
image: postgres:15
ports:
- 5432:5432
environment:
- POSTGRES_USER=jira
- POSTGRES_PASSWORD=jira
- POSTGRES_DB=jira
- LANG=C
healthcheck:
test: ["CMD-SHELL", "pg_isready -U jira"]
interval: 10s
timeout: 5s
retries: 5