Files
Scriberr/docker-compose.yml
2025-12-16 18:38:51 -08:00

19 lines
482 B
YAML

services:
scriberr:
image: ghcr.io/rishikanthc/scriberr:latest
ports:
- "8080:8080"
volumes:
- scriberr_data:/app/data
- env_data:/app/whisperx-env
environment:
# Security: already set in container, but can be overridden
- APP_ENV=production
# CORS: comma-separated list of allowed origins for production
# - ALLOWED_ORIGINS=https://your-domain.com
restart: unless-stopped
volumes:
scriberr_data: {}
env_data: {}