Files
Scriberr/docker-compose.yml
rishikanthc bab12bfe39 docs: update installation for PUID/PGID and add troubleshooting section
- Update Docker Compose files to default PUID/PGID to 1000
- Add note about SECURE_COOKIES for non-SSL access in README and project site
- Create dedicated Troubleshooting page in documentation site
- Synchronize permissions documentation across all platforms
2025-12-19 09:24:22 -08:00

21 lines
536 B
YAML

services:
scriberr:
image: ghcr.io/rishikanthc/scriberr:latest
ports:
- "8080:8080"
volumes:
- scriberr_data:/app/data
- env_data:/app/whisperx-env
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
# 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: {}