-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
docker-compose.yml
55 lines (51 loc) · 1.14 KB
/
docker-compose.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: '3'
services:
jira:
depends_on:
- postgresql
image: teamatldocker/jira:8.22.1
networks:
- jiranet
volumes:
- jiradata:/var/atlassian/jira
ports:
- '80:8080'
environment:
- 'JIRA_DATABASE_URL=postgresql://jira@postgresql/jira'
- 'JIRA_DB_PASSWORD=atlassian'
- 'SETENV_JVM_MINIMUM_MEMORY=2048m'
- 'SETENV_JVM_MAXIMUM_MEMORY=4096m'
- 'JIRA_PROXY_NAME='
- 'JIRA_PROXY_PORT='
- 'JIRA_PROXY_SCHEME='
logging:
driver: "json-file"
options:
max-size: "500k"
max-file: "50"
postgresql:
image: postgres:12.9-alpine
networks:
- jiranet
volumes:
- postgresqldata:/var/lib/postgresql/data
environment:
- 'POSTGRES_USER=jira'
- 'POSTGRES_PASSWORD=atlassian'
- 'POSTGRES_DB=jira'
- 'POSTGRES_ENCODING=UNICODE'
- 'POSTGRES_COLLATE=C'
- 'POSTGRES_COLLATE_TYPE=C'
logging:
driver: "json-file"
options:
max-size: "500k"
max-file: "50"
volumes:
jiradata:
external: false
postgresqldata:
external: false
networks:
jiranet:
driver: bridge