-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathdocker-compose.blackwell.yml
More file actions
34 lines (33 loc) · 1.02 KB
/
docker-compose.blackwell.yml
File metadata and controls
34 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Docker Compose for Scriberr with Blackwell GPU support (RTX 50-series)
# Uses pre-built image from GitHub Container Registry
# For legacy GPUs (GTX 10-series through RTX 40-series), use docker-compose.cuda.yml instead
version: "3.9"
services:
scriberr:
image: ghcr.io/rishikanthc/scriberr-cuda-blackwell:latest
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: {}