mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-06-28 14:55:46 +00:00
24 lines
500 B
YAML
24 lines
500 B
YAML
version: "3.9"
|
|
services:
|
|
scriberr:
|
|
image: ghcr.io/rishikanthc/scriberr:v1.0.4-cuda
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- scriberr_data:/app/data
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities:
|
|
- gpu
|
|
environment:
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
|
|
volumes:
|
|
scriberr_data: {}
|