-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (69 loc) · 1.67 KB
/
docker-compose.yml
File metadata and controls
69 lines (69 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
version: "3"
volumes:
db: ~
jira: ~
confluence: ~
bamboo: ~
services:
bamboo:
restart: always
build: ./bamboo
image: wobblecode/docker-bamboo
ports:
- "8085:8085"
links:
- database
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- bamboo:/var/atlassian/application-data/bamboo
- ./bamboo/ssh:/.ssh
environment:
X_PROXY_SCHEME: https
X_PROXY_PORT: 443
X_PROXY_NAME: bamboo.wobblecode.com
X_SECURE: "true"
X_PATH: /
confluence:
restart: always
build: ./confluence
image: wobblecode/docker-confluence
ports:
- "8090:8090"
- "8091:8091"
links:
- database
volumes:
- confluence:/var/atlassian/application-data/confluence
environment:
X_PROXY_SCHEME: https
X_PROXY_PORT: 443
X_PROXY_NAME: confluence.wobblecode.com
X_SECURE: "true"
X_PATH: /
jira:
restart: always
build: ./jira
image: wobblecode/docker-jira
environment:
JAVA_OPTS: -Xms384m -Xmx1024m
CATALINA_OPTS: -Datlassian.plugins.enable.wait=1200
X_PROXY_SCHEME: https
X_PROXY_PORT: 443
X_PROXY_NAME: jira.wobblecode.com
X_PATH: /
ports:
- "8080:8080"
links:
- database
volumes:
- jira:/var/atlassian/application-data/jira
database:
restart: always
image: postgres:9.5
expose:
- 5432
volumes:
- db:/var/lib/postgresql/data
- ./jira/setup-db.sh:/docker-entrypoint-initdb.d/setup-jira-db.sh
- ./confluence/setup-db.sh:/docker-entrypoint-initdb.d/setup-confluence-db.sh
- ./bamboo/setup-db.sh:/docker-entrypoint-initdb.d/setup-bamboo-db.sh