-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
70 lines (65 loc) · 1.77 KB
/
docker-compose.yml
File metadata and controls
70 lines (65 loc) · 1.77 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
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
version: "3"
services:
flint.example.api:
build:
context: ./flint-api/local/rest_api_flint.example
dockerfile: Dockerfile
image: simpleshell/flint.example.api:latest
ports:
- "8080:8080"
container_name: flint.example.api
volumes:
- ./flint-api/local/rest_api_flint.example/output:/server/output
- ./flint-api/local/rest_api_flint.example/config:/server/config
flint.gcbm.api:
build:
context: ./flint-api/local/rest_api_gcbm/
dockerfile: Dockerfile
image: simpleshell/flint.gcbm.api:latest
ports:
- "8081:8080"
container_name: flint.gcbm.api
volumes:
- ./flint-api/local/rest_api_gcbm/output:/server/output
- ./flint-api/local/rest_api_gcbm/config:/server/config
- shared-output:/app/output
viz.api:
build:
context: ./viz-api
dockerfile: Dockerfile
image: simpleshell/viz.api:latest
ports:
- "8082:8080"
- "5000:5000"
container_name: viz.api
volumes:
- ./viz-api/output:/server/output
- ./viz-api/config:/server/config
- shared-output:/shared-output
user.ui:
build:
context: ./user-ui
dockerfile: Dockerfile
image: simpleshell/user.ui:latest
ports:
- "8000:80"
container_name: user.ui
volumes:
- ./user-ui:/usr/src/app/user-ui
- ./flint.api/local/rest_api_flint.example/output:/server/output
- /usr/src/app/user-ui/node_modules
data.api:
build:
context: ./data-api
dockerfile: Dockerfile
image: simpleshell/data.api:latest
ports:
- "8083:8080"
container_name: data.api
volumes:
- ./data-api/output:/server/output
- ./data-api/config:/server/config
- shared-input:/app/datasets
volumes:
shared-output:
shared-input: