-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
39 lines (39 loc) · 1.12 KB
/
docker-compose.dev.yml
File metadata and controls
39 lines (39 loc) · 1.12 KB
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
version: '3'
services:
holorepository-ui-client:
build:
context: ./HoloRepositoryUI
dockerfile: ./client/Dockerfile
args:
- REACT_APP_BACKEND_HOST=http://localhost
- REACT_APP_BACKEND_PORT=3001
- REACT_APP_BACKEND_TIMEOUT=15000
ports:
- "3000:3000"
holorepository-ui-server:
build:
context: ./HoloRepositoryUI
dockerfile: ./server/Dockerfile
env_file: ./HoloRepositoryUI/server/.env.local
ports:
- "3001:3001"
holopipelines-core:
build: ./HoloPipelines
env_file: ./HoloPipelines/.env
ports:
- "3100:3100"
links:
- holopipelines-models__dense_vnet_abdominal_ct
- holostorage-accessor
environment:
- MODEL_ABDOMINAL_SEGMENTATION_HOST=http://holopipelines-models__dense_vnet_abdominal_ct
- HOLOSTORAGE_ACCESSOR_HOST=http://holostorage-accessor
holostorage-accessor:
build: ./HoloStorageAccessor
env_file: ./HoloStorageAccessor/.env
ports:
- "3200:3200"
holopipelines-models__dense_vnet_abdominal_ct:
build: ./HoloPipelines/models/dense_vnet_abdominal_ct
ports:
- "5000:5000"