Complete Feature Set: ✅ Vertex AI Embeddings - Semantic search for Learning Hub ✅ Voice Preferences - Per-user STT model + TTS voice selection ✅ Browser Whisper - Optional client-side transcription with graceful CDN fallback ✅ TTS Preview - Working for all voices including server default ✅ Audio Backups - Automatic recording backup with 24h retention ✅ S3 Documents - Upload/manage documents (AWS, B2, MinIO) ✅ Learning Hub - AI content generation from PDFs/Nextcloud Fixed Issues: - TTS preview button now working (correct event listener) - Browser Whisper shows clear warning if CDN blocked - Server default voice preview working - Graceful fallback to server transcription - User-friendly error messages throughout Documentation: - FEATURES_EXPLAINED.md - Complete feature guide - BROWSER_WHISPER_TROUBLESHOOTING.md - CDN blocking troubleshooting - EMBEDDINGS_SETUP.md - Vector search setup guide Production Ready: - All features tested - Clear error handling - Graceful degradation - HIPAA-compliant options available
41 lines
978 B
YAML
41 lines
978 B
YAML
services:
|
|
pediatric-scribe:
|
|
image: danielonyejesi/pediatric-ai-scribe-v3:v17
|
|
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:
|