samu/schematic-drawing
0
1version: '3.8'2services:3 app:4 build:5 context: .6 dockerfile: Dockerfile7 ports:8 - "8002:8002" # Backend API9 - "8080:8080" # Frontend static server10 environment:11 - API_KEY=${API_KEY}12 - MODEL=${MODEL}13 volumes:14 - .:/app15 healthcheck:16 test: ["CMD", "curl", "-f", "http://localhost:8002"]17 interval: 30s18 timeout: 10s19 retries: 3