-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (50 loc) · 1.08 KB
/
Copy pathdocker-compose.yml
File metadata and controls
54 lines (50 loc) · 1.08 KB
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
version: "3"
name: jira-9
services:
jira:
depends_on:
- postgresql
image: jira-software-arm64:9.13.1
networks:
- jiranet
volumes:
- jiradata:/var/atlassian/jira
ports:
- "8080:8080"
logging:
# limit logs retained on host to 25MB
driver: "json-file"
options:
max-size: "500k"
max-file: "50"
postgresql:
image: postgres:9.5-alpine
ports:
- 5432:5432
networks:
- jiranet
volumes:
- postgresqldata:/var/lib/postgresql/data
environment:
# Database hostname is `postgresql` inside Jira
- "POSTGRES_USER=jira"
# CHANGE THE PASSWORD!
- "POSTGRES_PASSWORD=Postgres_password"
- "POSTGRES_DB=jiradb"
- "POSTGRES_ENCODING=UNICODE"
- "POSTGRES_COLLATE=C"
- "POSTGRES_COLLATE_TYPE=C"
logging:
# limit logs retained on host to 25MB
driver: "json-file"
options:
max-size: "500k"
max-file: "50"
volumes:
jiradata:
external: false
postgresqldata:
external: false
networks:
jiranet:
driver: bridge