mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-06-28 14:55:46 +00:00
19 lines
482 B
YAML
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: {}
|