mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-03-03 03:47:02 +00:00
- 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
32 lines
816 B
YAML
32 lines
816 B
YAML
version: "3.9"
|
|
services:
|
|
scriberr:
|
|
image: ghcr.io/rishikanthc/scriberr:v1.0.4-cuda
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- scriberr_data:/app/data
|
|
- env_data:/app/whisperx-env
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities:
|
|
- gpu
|
|
environment:
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
- 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
|
|
|
|
volumes:
|
|
scriberr_data: {}
|
|
env_data: {}
|