36 lines
921 B
YAML
36 lines
921 B
YAML
x-info:
|
|
repo: https://github.com/chrisbenincasa/tunarr
|
|
releases: https://github.com/chrisbenincasa/tunarr/releases
|
|
documentation: https://tunarr.com/
|
|
|
|
services:
|
|
tunarr:
|
|
image: chrisbenincasa/tunarr:1.2.11
|
|
container_name: tunarr
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8000:8000
|
|
environment:
|
|
- TZ=America/New_York
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
|
|
- TUNARR_BIND_ADDR=0.0.0.0
|
|
volumes:
|
|
- /mnt/appdata/tunarr/data:/config/tunarr
|
|
- /mnt/media:/local-media
|
|
devices:
|
|
- /dev/dri:/dev/dri # Intel/iGPU support
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
labels:
|
|
- "komodo.managed=true" |