-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
32 lines (29 loc) · 883 Bytes
/
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
version: '3'
services:
backend:
image: muhammadsheraza002/ai_facial_emotion_prediction_system_backend:latest
container_name: backend_container
ports:
- "5000:5000" # Expose backend port
networks:
- ai_network
restart: unless-stopped
frontend:
image: muhammadsheraza002/ai_facial_emotion_prediction_system_frontend:latest
container_name: frontend_container
ports:
- "3000:80" # Expose frontend port (change port if needed)
networks:
- ai_network
restart: unless-stopped
video_prediction:
image: muhammadsheraza002/ai_facial_emotion_prediction_system_video_app:latest
container_name: video_prediction_container
ports:
- "8080:8080" # Expose video prediction port (change port if needed)
networks:
- ai_network
restart: unless-stopped
networks:
ai_network:
driver: bridge