-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml.backup
More file actions
327 lines (327 loc) · 7.03 KB
/
docker-compose.yml.backup
File metadata and controls
327 lines (327 loc) · 7.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
version: "2"
services:
apt-cacher-ng:
image: mic92/apt-cacher-ng
build:
context: apt-cacher-ng
volumes:
- /data/apt:/var/cache/apt-cacher-ng
labels:
tk.higgsboson.no-scheduling: "True"
sharelatex:
image: rancher/dns-service
links:
- loadbalancer
public-chat:
image: rancher/dns-service
links:
- loadbalancer
docs:
image: rancher/dns-service
links:
- loadbalancer
agent-instance:
image: mic92/agent-instance:v0.8.3
build:
context: agent-instance
command: /bin/true
labels:
tk.higgsboson.no-scheduling: "True"
base:
image: mic92/sharelatex-base
build:
context: base
command: /bin/true
labels:
tk.higgsboson.no-scheduling: "True"
nodejs:
image: mic92/sharelatex-nodejs
build:
context: nodejs
command: /bin/true
depends_on:
- base
labels:
tk.higgsboson.no-scheduling: "True"
loadbalancer:
image: rancher/load-balancer-service
ports:
- 80:80
- 9001:9001
links:
- web:web1
- real-time:real-time1
- chat:chat1
- docstore:docstore1
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
io.rancher.loadbalancer.target.real-time: sharelatex.local/socket.io=3000
io.rancher.loadbalancer.target.web: sharelatex.local=3000
io.rancher.loadbalancer.target.chat: public-chat.local=3000
io.rancher.loadbalancer.target.docstore: docs.local=3000
chat:
image: mic92/sharelatex-chat
build:
context: chat
links:
- mongodb
- redis
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
clsi:
image: mic92/sharelatex-clsi
build:
context: clsi
links:
- postgresql
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
contacts:
image: mic92/sharelatex-contacts
build:
context: contacts
links:
- mongodb
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
docstore:
image: mic92/sharelatex-docstore
build:
context: docstore
links:
- mongodb
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
doc-updater:
image: mic92/sharelatex-doc-updater
build:
context: doc-updater
links:
- mongodb
- redis
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
real-time:
image: mic92/sharelatex-real-time
build:
context: real-time
links:
- redis
- doc-updater
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
filestore:
image: mic92/sharelatex-filestore
build:
context: filestore
links:
- telegraf
volumes:
- /mnt/share/filestore:/data
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
spelling:
image: mic92/sharelatex-spelling
build:
context: spelling
links:
- mongodb
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
tags:
image: mic92/sharelatex-tags
build:
context: tags
links:
- mongodb
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
track-changes:
image: mic92/sharelatex-track-changes
build:
context: track-changes
links:
- mongodb
- redis
- docstore
- doc-updater
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
web:
image: mic92/sharelatex-web
build:
context: web
volumes:
- dataweb:/app/data
links:
- mongodb
- redis
- contacts
- docstore
- doc-updater
- filestore
- spelling
- tags
- chat
- clsi
- telegraf
depends_on:
- nodejs
labels:
io.rancher.scheduler.affinity:host_label: 'type=application'
redis:
image: mic92/sharelatex-redis
build:
context: redis
depends_on:
- base
volumes:
- dataredis:/data
labels:
io.rancher.scheduler.affinity:host_label: 'type=database'
mongodb:
image: mic92/sharelatex-mongodb
build:
context: mongodb
depends_on:
- base
volumes:
- datamongodb:/data/db
labels:
io.rancher.scheduler.affinity:host_label: 'type=database'
postgresql:
image: mic92/sharelatex-postgresql
build:
context: postgresql
depends_on:
- base
volumes:
- datapostgresql:/var/lib/postgresql/data
labels:
io.rancher.scheduler.affinity:host_label: 'type=database'
influxdb:
image: mic92/sharelatex-influxdb
build:
context: influxdb
ports:
- "8083:8083"
- "8086:8086"
depends_on:
- base
volumes:
- datainfluxdb:/data
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
kapacitor:
image: mic92/sharelatex-kapacitor
environment:
- RANCHER_ACCESS_KEY=${RANCHER_ACCESS_KEY}
- RANCHER_SECRET_KEY=${RANCHER_SECRET_KEY}
build:
context: kapacitor
depends_on:
- base
volumes:
- /data/kapacitor:/data
links:
- influxdb
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
telegraf:
image: mic92/sharelatex-telegraf
build:
context: telegraf
depends_on:
- base
ports:
- "8125:8125/udp"
links:
- influxdb
- postgresql
- mongodb
- redis
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
grafana:
image: mic92/sharelatex-grafana
build:
context: grafana
depends_on:
- base
links:
- influxdb
- postgresql
ports:
- "3000:3000"
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
chronograf:
image: mic92/sharelatex-chronograf
build:
context: chronograf
depends_on:
- base
links:
- influxdb
ports:
- "10000:10000"
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
volumes:
- datachronograf:/data
loadgenerator:
image: mic92/sharelatex-loadgenerator
build:
context: loadgenerator
depends_on:
- base
links:
- telegraf
ports:
- "4444:4444"
labels:
io.rancher.scheduler.affinity:host_label: 'type=monitoring'
volumes:
- /mnt/loadgenerator:/app
volumes:
datachronograf:
driver: local
dataredis:
driver: local
datamongodb:
driver: local
datapostgresql:
driver: local
dataweb:
driver: local
datainfluxdb:
driver: local