-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
89 lines (79 loc) · 1.42 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
version: "3"
services:
pythonml:
image: mayoqin/pythonml
ports:
- "9908:9901"
expose:
- "9901"
environment:
ADVERTISED_HOST: pythonml
ADVERTISED_PORT: 9901
links:
- tactic
riipl:
image: mayoqin/riipl
ports:
- "9901:9901"
expose:
- "9901"
environment:
ADVERTISED_HOST: riipl
ADVERTISED_PORT: 9901
links:
- tactic
dicomreceiveingest:
image: mayoqin/dicomreceiveingest
ports:
- "9902:8832"
- "9906:5000"
expose:
- "8832"
- "5000"
environment:
ADVERTISED_HOST: dicomreceiveingest
ADVERTISED_PORT: 8832
links:
- tactic
plastimatch:
image: mayoqin/plastimatch
ports:
- "9903:9901"
expose:
- "9901"
environment:
ADVERTISED_HOST: plastimatch
ADVERTISED_PORT: 9901
links:
- tactic
tactic:
image: mayoqin/tactic:demo
ports:
- "9907:80"
expose:
- "80"
environment:
ADVERTISED_HOST: tactic
ADVERTISED_PORT: 80
slicer:
image: mayoqin/slicer
ports:
- "9904:9901"
expose:
- "9901"
environment:
ADVERTISED_HOST: slicer
ADVERTISED_PORT: 9901
links:
- tactic
dcmqi:
image: mayoqin/dcmqi
ports:
- "9905:9901"
expose:
- "9901"
environment:
ADVERTISED_HOST: dcmqi
ADVERTISED_PORT: 9901
links:
- tactic