-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
435 lines (390 loc) · 13.1 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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
services:
# start - common services
orchestrator:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-orchestrator:${REGISTRY_TAG}
restart: unless-stopped
environment:
- PARALLEL_PREPROCESSORS=ON
- STORE_IMAGE_DATA=ON
- MEMCACHE_SERVERS=memcached:11211
env_file:
- ./config/express-common.env
group_add:
# This should be set in an environment variable or .env
- ${DOCKER_GID}
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- user-logs:/var/log/IMAGE
memcached:
profiles: [production, test, default]
image: 'memcached:1.6'
restart: unless-stopped
# cache memory size - 4GB
command: -m 4096
espnet-tts:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-service-espnet-tts:${REGISTRY_TAG}
restart: unless-stopped
environment:
- TORCH_DEVICE=cuda
ports:
- "8001:80"
labels:
ca.mcgill.a11y.image.cacheTimeout: 3600
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "utility", "compute"]
espnet-tts-fr:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-service-espnet-tts-fr:${REGISTRY_TAG}
restart: unless-stopped
environment:
- TORCH_DEVICE=cuda
labels:
ca.mcgill.a11y.image.cacheTimeout: 3600
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "compute", "utility"]
multilang-support:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-service-translation:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.cacheTimeout: 3600
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "compute", "utility"]
autour-preprocessor:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-autour:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/maps.env
labels:
ca.mcgill.a11y.image.preprocessor: 1
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
content-categoriser:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-content-categoriser:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 1
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
env_file:
./config/ollama.env
graphic-caption:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-graphic-caption:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 1
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
env_file:
./config/ollama.env
graphic-tagger:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-graphic-tagger:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/azure-api.env
labels:
ca.mcgill.a11y.image.preprocessor: 2
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
object-detection:
profiles: [production, default, test]
image: ghcr.io/shared-reality-lab/image-preprocessor-object-detection-v8:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 3
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "utility", "compute"]
object-grouping:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-grouping:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 4
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
openstreetmap:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-openstreetmap:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/maps.env
labels:
ca.mcgill.a11y.image.preprocessor: 3
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
object-sorting:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-sorting:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 5
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
semantic-segmentation:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-mmsemantic-segmentation:${REGISTRY_TAG}
restart: unless-stopped
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "utility", "compute"]
labels:
ca.mcgill.a11y.image.preprocessor: 3
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
supercollider:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-service-supercollider:${REGISTRY_TAG}
command: sclang -D ./loader.scd
restart: unless-stopped
volumes:
- sc-store:/tmp/sc-store
deploy:
replicas: 2
photo-audio-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-photo-audio:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.handler: enable
volumes:
- sc-store:/tmp/sc-store
autour-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-autour:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.handler: enable
volumes:
- sc-store:/tmp/sc-store
photo-audio-haptics-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-photo-audio-haptics:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.handler: enable
volumes:
- sc-store:/tmp/sc-store
high-charts-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-high-charts:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.handler: enable
volumes:
- sc-store:/tmp/sc-store
svg-od-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-svg-od:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
svg-semantic-seg-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-svg-semantic-seg:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
depth-map-generator:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-depth-map-generator:${REGISTRY_TAG}
restart: unless-stopped
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "utility", "compute"]
labels:
ca.mcgill.a11y.image.preprocessor: 3
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
svg-depth-map:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-svg-depth-map:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
nominatim-preprocessor:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-nominatim:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.preprocessor: 2
ca.mcgill.a11y.image.cacheTimeout: 3600
photo-tactile-svg-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-photo-tactile-svg:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
map-tactile-svg-handler:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-handler-map-tactile-svg:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
# end - common services
# start - unicorn exclusive services
motd-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-motd:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
environment:
- MOTD=Hello, world!
labels:
ca.mcgill.a11y.image.handler: enable
hello-haptics-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-hello-haptics:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
labels:
ca.mcgill.a11y.image.handler: enable
# For environment setup refer to https://github.com/Shared-Reality-Lab/IMAGE-server/tree/main/preprocessors/ocr
ocr-clouds-preprocessor:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-ocr-clouds:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/apis-and-selection.env
labels:
ca.mcgill.a11y.image.preprocessor: 4
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
object-depth-calculator:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-object-depth-calculator:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 4
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
line-charts:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-line-charts:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 1
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
action-recognition:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-action-recognition:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 4
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: ["gpu", "utility", "compute"]
ocr-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-ocr:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
osm-streets-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-osm-streets:${REGISTRY_TAG}
restart: unless-stopped
env_file:
- ./config/express-common.env
depends_on:
- supercollider
- espnet-tts
labels:
ca.mcgill.a11y.image.handler: enable
volumes:
- sc-store:/tmp/sc-store
svg-open-street-map-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-svg-open-street-map:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.handler: enable
ca.mcgill.a11y.image.port: 5000
collage-detector-preprocessor:
profiles: [production, test, default]
image: ghcr.io/shared-reality-lab/image-preprocessor-collage-detector:${REGISTRY_TAG}
restart: unless-stopped
labels:
ca.mcgill.a11y.image.preprocessor: 1
ca.mcgill.a11y.image.port: 5000
ca.mcgill.a11y.image.cacheTimeout: 3600
svg-action-recognition-handler:
profiles: [test, default]
image: ghcr.io/shared-reality-lab/image-handler-svg-action-recognition:${REGISTRY_TAG}
labels:
ca.mcgill.a11y.image.handler: enable
monarch-link-app:
profiles: [test, default]
image: "ghcr.io/shared-reality-lab/image-service-monarch-link-app:${REGISTRY_TAG}"
restart: unless-stopped
networks:
- traefik
tat:
profiles: [test, default]
image: "ghcr.io/shared-reality-lab/image-service-tat:${REGISTRY_TAG}"
restart: unless-stopped
networks:
- traefik
# end - unicorn exclusive services
volumes:
sc-store:
user-logs:
website-logs:
# https://docs.docker.com/compose/networking/
networks:
# start - reverse proxy setup
# traefik is a reverse proxy used, any other reverse proxy (nginx, HAProxy) can be used as well
# following section is not required if the server is hosted in another way
traefik:
external: true
name: traefik
# end - reverse proxy setup
default:
name: image