-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.workers.yml
53 lines (49 loc) · 1.44 KB
/
docker-compose.workers.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
version: '3.1'
#
# There are a number of required environmental variables. For a new installation, copy and past .env-template as .env
# and change the values as appropriate.
#
services:
canopus-client:
image: mouselightpipeline/worker-client:1.4
hostname: canopus-client
environment:
PIPELINE_WORKER_API_HOST: ${PIPELINE_CANOPUS_API_HOST}
PIPELINE_WORKER_API_PORT: ${PIPELINE_LOCAL_WORKER_API_PORT}
ports:
- ${PIPELINE_CANOPUS_LOCAL_CLIENT_PORT}:6301
volumes:
- log_output:/var/log/pipeline
networks:
- back_tier
sirius-client:
image: mouselightpipeline/worker-client:1.4
hostname: sirius-client
environment:
PIPELINE_WORKER_API_HOST: ${PIPELINE_SIRIUS_API_HOST}
PIPELINE_WORKER_API_PORT: ${PIPELINE_LOCAL_WORKER_API_PORT}
ports:
- ${PIPELINE_SIRIUS_LOCAL_CLIENT_PORT}:6301
volumes:
- log_output:/var/log/pipeline
networks:
- back_tier
vega-client:
image: mouselightpipeline/worker-client:1.4
hostname: vega-client
environment:
PIPELINE_WORKER_API_HOST: ${PIPELINE_VEGA_API_HOST}
PIPELINE_WORKER_API_PORT: ${PIPELINE_LOCAL_WORKER_API_PORT}
ports:
- ${PIPELINE_VEGA_LOCAL_CLIENT_PORT}:6301
volumes:
- log_output:/var/log/pipeline
networks:
- back_tier
#
# Not present: worker backend/api service - must be run where local paths to data are accessible
#
volumes:
log_output:
networks:
back_tier: