Add FileFlows service (Port 8268)

This commit is contained in:
sascha 2026-05-07 20:12:18 +02:00
parent 6e2b92f7cc
commit ab57ffa04e

View file

@ -7,7 +7,6 @@ services:
- /dev/nvidia-uvm:/dev/nvidia-uvm - /dev/nvidia-uvm:/dev/nvidia-uvm
- /dev/nvidia-uvm-tools:/dev/nvidia-uvm-tools - /dev/nvidia-uvm-tools:/dev/nvidia-uvm-tools
- /dev/dri/renderD128:/dev/dri/renderD128 - /dev/dri/renderD128:/dev/dri/renderD128
deploy: deploy:
resources: resources:
reservations: reservations:
@ -25,12 +24,11 @@ services:
- webUIPort=8265 - webUIPort=8265
- internalNode=true - internalNode=true
- inContainer=true - inContainer=true
#- ffmpegVersion=7
- nodeName=tdarr - nodeName=tdarr
- nodeID=tdarr - nodeID=tdarr
- NVIDIA_DRIVER_CAPABILITIES=all - NVIDIA_DRIVER_CAPABILITIES=all
- NVIDIA_VISIBLE_DEVICES=all - NVIDIA_VISIBLE_DEVICES=all
- TDARR_MODE=both # oder server/node je nach Setup - TDARR_MODE=both
- GPU_VENDOR=nvidia - GPU_VENDOR=nvidia
image: denix811/tdarr-denix:latest image: denix811/tdarr-denix:latest
ports: ports:
@ -38,33 +36,39 @@ services:
- 8266:8266 - 8266:8266
restart: always restart: always
volumes: volumes:
#- tdarr_config:/app
- /app-config/data:/app/server - /app-config/data:/app/server
- /app-config/config:/app/configs - /app-config/config:/app/configs
- /app-config/logs:/app/logs - /app-config/logs:/app/logs
- tdarr:/tdarr/ - tdarr:/tdarr/
- data:/data - /mnt/media:/data
- usenet:/usenet/ - 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: volumes:
data:
name: tdarr_data
driver: local
driver_opts:
device: :/volume1/nas
o: addr=192.168.2.100,nolock,soft,rw
type: nfs
usenet: usenet:
name: tdarr_usenet name: tdarr_usenet
driver: local driver: local
driver_opts: driver_opts:
device: :/usenet device: :/usenet
o: addr=10.2.1.1,nolock,soft,rw o: addr=10.2.1.1,nolock,hard,rw
type: nfs type: nfs
tdarr: tdarr:
name: tdarr name: tdarr
driver: local driver: local
driver_opts: driver_opts:
device: :/tdarr device: :/tdarr
o: addr=10.2.1.1,nolock,soft,rw o: addr=10.2.1.1,nolock,hard,rw
type: nfs type: nfs