-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
38 lines (38 loc) · 952 Bytes
/
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
version: "3"
services:
caching_mechanism:
build: ./backend/caching_mechanism
image: caching_mechanism
container_name: caching_mechanism
ports:
- "5003:5003"
anomaly_detection_api:
build: ./backend/anomaly_detection_api
image: anomaly_detection_api
container_name: anomaly_detection_api
ports:
- "5001:5001"
notification_socket:
build: ./backend/notification_socket
image: notification_socket
container_name: notification_socket
ports:
- "5000:5000"
sentiment_analysis_api:
build: ./backend/sentiment_analysis_api
image: sentiment_analysis_api
container_name: sentiment_analysis_api
ports:
- "5002:5002"
database_api:
build: ./backend/database_api
image: database_api
container_name: database_api
ports:
- "3500:3500"
frontend:
build: ./frontend
image: frontend
container_name: frontend
ports:
- "8000:8000"