-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·69 lines (60 loc) · 1.78 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
version: '3.6'
services:
scheduler:
image: skasip/dprepb-c-pipeline
ports:
- 8786:8786
- 8787:8787
expose:
- "2181"
- "9092"
entrypoint: ["bash", "./SKA-SIP-DPrepB-C-Pipeline/docker-entrypoint.sh"]
build:
context: .
volumes:
- type: bind
source: /mnt/ceph/dprepb-c/SKA-SIP-DPrepB-C-Pipeline/inputs-docker
target: /data/inputs
- type: bind
source: /mnt/ceph/dprepb-c/SKA-SIP-DPrepB-C-Pipeline/outputs-docker
target: /data/outputs
worker:
image: skasip/dprepb-c-pipeline
hostname: dask-worker
command: ["dask-worker", "--memory-limit 32000000000 --resources MEM=32000000000 scheduler:8786"]
build:
context: .
expose:
- "2181"
- "9092"
volumes:
- type: bind
source: /mnt/ceph/dprepb-c/SKA-SIP-DPrepB-C-Pipeline/outputs-docker
target: /data/outputs
notebook:
image: skasip/dprepb-c-pipeline
hostname: notebook
ports:
- 8888:8888
expose:
- "2181"
- "9092"
build:
context: .
volumes:
- type: bind
source: /mnt/ceph/dprepb-c/SKA-SIP-DPrepB-C-Pipeline/inputs-docker
target: /data/inputs
- type: bind
source: /mnt/ceph/dprepb-c/SKA-SIP-DPrepB-C-Pipeline/outputs-docker
target: /data/outputs
qa:
image: skasip/dprepb-c-qa-aggregator
hostname: qa
expose:
- "2181"
- "9092"
build:
context: .
dockerfile: Dockerfile.qa
tty: true