forked from thrixxy-technologies/flavorsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (39 loc) · 849 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
43 lines (39 loc) · 849 Bytes
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
version: '3.8'
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
depends_on:
- backend
networks:
- flavorsnap-network
environment:
- NEXT_PUBLIC_API_URL=http://localhost:5000
volumes:
- ./frontend:/app
- /app/node_modules
backend:
build:
context: ./ml-model-api
dockerfile: Dockerfile.dev
ports:
- "5000:5000"
networks:
- flavorsnap-network
environment:
- FLASK_ENV=development
- MODEL_PATH=/app/model.pth
volumes:
- ./ml-model-api:/app
- ./model.pth:/app/model.pth
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
interval: 30s
timeout: 10s
retries: 3
networks:
flavorsnap-network:
driver: bridge