-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
46 lines (46 loc) · 1.5 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
version: "3.7"
services:
preproc:
image: afam00/peds-brain-tumor-preproc:1.0.0
hostname: 'preproc'
volumes:
- ./input:/input
- ./preprocessed:/preprocessed
skull-strip:
image: afam00/peds-brain-auto-skull-strip:0.0.0
hostname: 'peds-brain-auto-skull-strip'
volumes:
- ./preprocessed:/input
- ./preprocessed:/output
depends_on:
preproc:
condition: service_completed_successfully
tumor-segmentation:
image: afam00/peds-brain-auto-seg:1.2.0
hostname: 'peds-brain-auto-seg'
volumes:
- ./preprocessed:/input
- ./output:/output
depends_on:
preproc:
condition: service_completed_successfully
normalization:
image: afam00/peds-brain-intensity-normalization:0.0.0
hostname: 'peds-brain-intensity-normalization'
volumes:
- ./preprocessed:/input
- ./output:/output
depends_on:
skull-strip:
condition: service_completed_successfully
feature-extraction:
image: afam00/peds-brain-tumor-feat-extract:0.0.0
hostname: 'peds-brain-feat-extract'
volumes:
- ./output:/input
- ./output:/output
depends_on:
normalization:
condition: service_completed_successfully
tumor-segmentation:
condition: service_completed_successfully