From ab57ffa04e22e1da6e05c9a8d8e057845bca3b92 Mon Sep 17 00:00:00 2001 From: sascha Date: Thu, 7 May 2026 20:12:18 +0200 Subject: [PATCH] Add FileFlows service (Port 8268) --- compose.yaml | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/compose.yaml b/compose.yaml index 0c97864..400350e 100644 --- a/compose.yaml +++ b/compose.yaml @@ -7,7 +7,6 @@ services: - /dev/nvidia-uvm:/dev/nvidia-uvm - /dev/nvidia-uvm-tools:/dev/nvidia-uvm-tools - /dev/dri/renderD128:/dev/dri/renderD128 - deploy: resources: reservations: @@ -25,12 +24,11 @@ services: - webUIPort=8265 - internalNode=true - inContainer=true - #- ffmpegVersion=7 - nodeName=tdarr - nodeID=tdarr - NVIDIA_DRIVER_CAPABILITIES=all - NVIDIA_VISIBLE_DEVICES=all - - TDARR_MODE=both # oder server/node je nach Setup + - TDARR_MODE=both - GPU_VENDOR=nvidia image: denix811/tdarr-denix:latest ports: @@ -38,33 +36,39 @@ services: - 8266:8266 restart: always volumes: - #- tdarr_config:/app - /app-config/data:/app/server - /app-config/config:/app/configs - /app-config/logs:/app/logs - tdarr:/tdarr/ - - data:/data + - /mnt/media:/data - usenet:/usenet/ + fileflows: + image: revenz/fileflows:latest + container_name: fileflows + restart: always + ports: + - 8268:5000 + volumes: + - ./fileflows-data:/app/Data + - /mnt/media:/data + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: - data: - name: tdarr_data - driver: local - driver_opts: - device: :/volume1/nas - o: addr=192.168.2.100,nolock,soft,rw - type: nfs usenet: name: tdarr_usenet driver: local driver_opts: device: :/usenet - o: addr=10.2.1.1,nolock,soft,rw + o: addr=10.2.1.1,nolock,hard,rw type: nfs tdarr: name: tdarr driver: local driver_opts: device: :/tdarr - o: addr=10.2.1.1,nolock,soft,rw + o: addr=10.2.1.1,nolock,hard,rw type: nfs