-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.coordinator.yml
53 lines (49 loc) · 1.43 KB
/
docker-compose.coordinator.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:
#
# Coordinator/scheduler - required, can be deployed anywhere
#
pipeline-api:
image: mouselightpipeline/pipeline-api:1.4
hostname: pipeline-api
ports:
- ${PIPELINE_API_PORT}:6001
volumes:
- log_output:/var/log/pipeline
- "${EXTERNAL_DATA_VOLUME_1}:${CONTAINER_DATA_VOLUME_1}"
- "${EXTERNAL_DATA_VOLUME_2}:${CONTAINER_DATA_VOLUME_2}"
networks:
- back_tier
pipeline-scheduler:
image: mouselightpipeline/scheduler:1.4
hostname: pipeline-scheduler
ports:
- ${PIPELINE_SCHEDULER_PORT}:6002
volumes:
- log_output:/var/log/pipeline
- "${EXTERNAL_DATA_VOLUME_1}:${CONTAINER_DATA_VOLUME_1}"
- "${EXTERNAL_DATA_VOLUME_2}:${CONTAINER_DATA_VOLUME_2}"
networks:
- back_tier
pipeline-client:
image: mouselightpipeline/pipeline-client:1.4
hostname: pipeline-client
environment:
PIPELINE_THUMBS_HOST: ${PIPELINE_THUMBS_HOST}
PIPELINE_THUMBS_PORT: ${PIPELINE_THUMBS_PORT}
PIPELINE_IS_ACTIVE: ${PIPELINE_IS_ACTIVE}
ports:
- ${PIPELINE_API_CLIENT_PORT}:6101
- ${PIPELINE_API_CLIENT_SOCKET_IO_PORT}:6102
volumes:
- log_output:/var/log/pipeline
networks:
- back_tier
volumes:
log_output:
networks:
back_tier: