pediatric-ai-scribe/docker-compose.yml
ifedan-ed 993e46f720 Initial commit: Pediatric AI Scribe v1.0.0
- Live encounter recording → HPI generation
- Physician voice dictation → polished HPI
- Developmental milestones checklist (AAP/Nelson)
- 3-sentence summary generator
- OpenRouter integration with model selector
- Docker support
- Mobile responsive UI
2026-03-17 21:46:05 -04:00

18 lines
382 B
YAML

version: '3.8'
services:
pediatric-scribe:
build: .
ports:
- "3000:3000"
env_file:
- .env
restart: unless-stopped
container_name: pediatric-ai-scribe
volumes:
- ./public:/app/public
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3