This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
crane.yml
88 lines (88 loc) · 2.36 KB
/
crane.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
containers:
pgsql_datastore:
image: busybox
run:
volume: ["/data"]
cmd: ["echo","'pgsql data'"]
detach: true
postgresql:
image: atende/postgresql:9.4
run:
volumes-from: ["pgsql_datastore"]
detach: true
nginx:
image: atende/nginx-proxy
run:
volume: ["/opt/certs:/etc/nginx/certs","/var/run/docker.sock:/tmp/docker.sock"]
publish: ["80:80","443:443"]
detach: true
jira_home:
image: busybox
run:
volume: ["/opt/jira-home"]
cmd: ["echo","'jira data'"]
detach: true
confluence_home:
image: busybox
run:
volume: ["/opt/confluence-home"]
cmd: ["echo","'confluence data'"]
detach: true
stash_home:
image: busybox
run:
volume: ["/opt/stash-home"]
cmd: ["echo","'stash data'"]
detach: true
crowd_home:
image: busybox
run:
volume: ["/opt/crowd-home"]
cmd: ["echo","'crowd data'"]
detach: true
bamboo_home:
image: busybox
run:
volume: ["/opt/bamboo-home"]
cmd: ["echo","'bamboo data'"]
detach: true
jira:
image: atende/jira
run:
env: ["VIRTUAL_HOST=project.company.com","PROXY_SCHEME=https","PROXY_PORT=443","PROXY_SECURED=true"]
volumes-from: ["jira_home"]
publish: ["8080:8080"]
link: ["postgresql:db"]
detach: true
confluence:
image: atende/confluence
run:
env: ["VIRTUAL_HOST=wiki.company.com","PROXY_SCHEME=https","PROXY_PORT=443","PROXY_SECURED=true"]
volumes-from: ["confluence_home"]
publish: ["8090:8090"]
link: ["postgresql:db"]
detach: true
stash:
image: atende/stash
run:
env: ["VIRTUAL_HOST=code.company.com","PROXY_SCHEME=https","PROXY_PORT=443","PROXY_SECURED=true"]
volumes-from: ["stash_home"]
publish: ["7990:7990"]
link: ["postgresql:db"]
detach: true
crowd:
image: atende/crowd
run:
env: ["VIRTUAL_HOST=auth.company.com","PROXY_SCHEME=https","PROXY_PORT=443","PROXY_SECURED=true"]
volumes-from: ["crowd_home"]
publish: ["8095:8095"]
link: ["postgresql:db"]
detach: true
bamboo:
image: atende/bamboo
run:
env: ["VIRTUAL_HOST=build.company.com","PROXY_SCHEME=https","PROXY_PORT=443","PROXY_SECURED=true"]
volumes-from: ["bamboo_home"]
publish: ["8085:8085"]
link: ["postgresql:db"]
detach: true