- APK: Add WAKE_LOCK, BOOT_COMPLETED, ACCESS_NETWORK_STATE permissions - APK: Disable allowBackup for medical data security - APK: AudioRecordingService now acquires wake lock, has stop action in notification - Serve /.well-known/assetlinks.json for TWA domain verification - Service worker: cache app shell, stale-while-revalidate for assets, network-first for API - Admin model management: validate model ID format, prevent built-in conflicts, audit toggle actions, prevent disabling all models - Bump version to v9.0.0, Docker tag to v9
41 lines
977 B
YAML
41 lines
977 B
YAML
services:
|
|
pediatric-scribe:
|
|
image: danielonyejesi/pediatric-ai-scribe-v3:v9
|
|
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:
|