-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
74 lines (73 loc) · 1.59 KB
/
docker-compose.yaml
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
version: "3.9"
services:
react:
container_name: ADEPT-ML-Frontend
restart: always
build:
context: ./Frontend
dockerfile: Dockerfile
args:
BACKEND_BASE_URL: http://localhost:8000
ports:
- "80:80"
backend:
container_name: ADEPT-ML-Backend
restart: always
build:
context: ./Backend
dockerfile: Dockerfile
volumes:
- ./Backend:/app
ports:
- "8000:80"
data-management:
container_name: ADEPT-ML-Data-Management
restart: always
build:
context: ./Data-Management
dockerfile: Dockerfile
volumes:
- ./Data-Management:/app
- ./data:/data
ports:
- "8001:80"
preprocessing:
container_name: ADEPT-ML-Preprocessing
restart: always
build:
context: ./Preprocessing
dockerfile: Dockerfile
volumes:
- ./Preprocessing:/app
ports:
- "8002:80"
feature-engineering:
container_name: ADEPT-ML-Feature-Engineering
restart: always
build:
context: ./Feature-Engineering
dockerfile: Dockerfile
volumes:
- ./Feature-Engineering:/app
ports:
- "8003:80"
anomaly-detection:
container_name: ADEPT-ML-Anomaly-Detection
restart: always
build:
context: ./Anomaly-Detection
dockerfile: Dockerfile
volumes:
- ./Anomaly-Detection:/app
ports:
- "8004:80"
explainability:
container_name: ADEPT-ML-Explainability
restart: always
build:
context: ./Explainability
dockerfile: Dockerfile
volumes:
- ./Explainability:/app
ports:
- "8005:80"