- Remove duplicate milestones sidebar button; well visit button now works correctly - Move Sick Visit sidebar entry to just below Well Visit (before Vaccine/Catch-Up) - Sick Visit remains its own standalone tab (not a subtab) - Well Visit subtabs: By Visit Age | Milestones | SSHADESS (12+) | Visit Note - Dramatically larger transcript boxes (min-height 240px, max-height 600px) - Dramatically larger note output boxes (min-height 480px) — beautiful scrollable - Collapsible desktop sidebar with localStorage persistence - Update README with full feature list - Bump docker-compose to v2.7
41 lines
979 B
YAML
41 lines
979 B
YAML
services:
|
|
pediatric-scribe:
|
|
image: danielonyejesi/pediatric-ai-scribe-v3:v2.7
|
|
ports:
|
|
- "3552:3000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- scribe-logs:/app/data/logs
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
container_name: pediatric-ai-scribe
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/api/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 20s
|
|
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: pedscribe
|
|
POSTGRES_USER: pedscribe
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD:?set DB_PASSWORD}
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
container_name: pedscribe-db
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U pedscribe"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
pgdata:
|
|
scribe-logs:
|