-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (52 loc) · 1.39 KB
/
docker-compose.yml
File metadata and controls
55 lines (52 loc) · 1.39 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
###############################################
# NPU-STACK — Full-Stack Docker Compose
# Launch everything with: docker compose up --build
###############################################
services:
# ─── Backend: FastAPI + PyTorch + OpenVINO ─────
npu-backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: npu-backend
ports:
- "8000:8000"
volumes:
- model-store:/app/data/models
- dataset-cache:/app/data/datasets
- db-data:/app/data
env_file:
- .env
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped
healthcheck:
test: [ "CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/api/health')" ]
interval: 30s
timeout: 10s
start_period: 60s
retries: 3
# ─── Frontend: React + Vite (Nginx) ────────────
npu-frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: npu-frontend
ports:
- "3000:3000"
depends_on:
npu-backend:
condition: service_healthy
restart: unless-stopped
healthcheck:
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:3000/" ]
interval: 30s
timeout: 5s
retries: 3
volumes:
model-store:
driver: local
dataset-cache:
driver: local
db-data:
driver: local