mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 18:54:58 +00:00
32 lines
868 B
YAML
32 lines
868 B
YAML
services:
|
|
dispatcharr:
|
|
# build:
|
|
# context: .
|
|
# dockerfile: Dockerfile
|
|
image: ghcr.io/dispatcharr/dispatcharr:latest
|
|
container_name: dispatcharr
|
|
ports:
|
|
- 9191:9191
|
|
volumes:
|
|
- dispatcharr_data:/data
|
|
environment:
|
|
- DISPATCHARR_ENV=aio
|
|
- REDIS_HOST=localhost
|
|
- CELERY_BROKER_URL=redis://localhost:6379/0
|
|
- DISPATCHARR_LOG_LEVEL=info
|
|
# Optional for hardware acceleration
|
|
#devices:
|
|
# - /dev/dri:/dev/dri # For Intel/AMD GPU acceleration (VA-API)
|
|
# Uncomment the following lines for NVIDIA GPU support
|
|
# NVidia GPU support (requires NVIDIA Container Toolkit)
|
|
#deploy:
|
|
# resources:
|
|
# reservations:
|
|
# devices:
|
|
# - driver: nvidia
|
|
# count: all
|
|
# capabilities: [gpu]
|
|
|
|
|
|
volumes:
|
|
dispatcharr_data:
|