From 10323dcb6ef767375b452ebefc9efc1f93f93d47 Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 11 Apr 2026 22:20:11 -0400 Subject: [PATCH] added tunarr compose --- nodes/waldorf/tunarr/compose.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nodes/waldorf/tunarr/compose.yaml diff --git a/nodes/waldorf/tunarr/compose.yaml b/nodes/waldorf/tunarr/compose.yaml new file mode 100644 index 0000000..4a5cb82 --- /dev/null +++ b/nodes/waldorf/tunarr/compose.yaml @@ -0,0 +1,28 @@ +services: + tunarr: + image: chrisbenincasa/tunarr:latest + 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 + 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"