-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
88 lines (74 loc) · 1.79 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
version: '3.2'
services:
postgres:
image: postgres:latest
environment:
- POSTGRES_USER=mdtn
- POSTGRES_PASSWORD=mdtn
- POSTGRES_DB=medtune
redis:
image: redis:latest
command: --appendonly yes
platform-app:
image: medtune/beta-platform:v0.1.6
entrypoint:
- ./medtune-beta
- start
- --wait
- --sync-cxpba
- --syncdb
- --create-users
- --secrets=TEST,TEST
ports:
- 8006:8005
depends_on:
- postgres
- redis
- mnist
- mura-mn-v2
- mura-mn-v2-cam
- mura-irn-v2
- chexray-pp
- chexray-dn-121
links:
- redis:redis
- postgres:postgres
- mnist:mnist
- inception:inception
- mura-mn-v2:mura-mn-v2
- mura-irn-v2:mura-irn-v2
- mura-mn-v2-cam:mura-cam-v2-cam
- chexray-pp:chexray-pp
- chexray-dn-121:chexray-dn-121
volumes:
- type: volume
source: mura-images
target: /go/src/github.com/medtune/beta-platform/static/demos/mura/images
- type: volume
source: chexray-images
target: /go/src/github.com/medtune/beta-platform/static/demos/chexray/images
mnist:
image: medtune/capsul:mnist
inception:
image: medtune/capsul:inception
mura-mn-v2:
image: medtune/capsul:mura-mn-v2
mura-irn-v2:
image: medtune/capsul:mura-irn-v2
mura-mn-v2-cam:
image: medtune/capsul:mura-mn-v2-cam
volumes:
- type: volume
source: mura-images
target: /medtune/data
chexray-dn-121:
image: medtune/capsul:chexray-dn-121
chexray-pp:
image: medtune/capsul:chexray-pp-helper
volumes:
- type: volume
source: chexray-images
target: /medtune/data
volumes:
mura-images:
chexray-images: