94 lines
2.2 KiB
YAML
94 lines
2.2 KiB
YAML
services:
|
|
jellyfin:
|
|
image: linuxserver/jellyfin:latest
|
|
container_name: jellyfin
|
|
#user: 1000:1000
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- /mnt/jellyfin:/config
|
|
- /mnt/transcode:/transcode
|
|
- /mnt/download:/data
|
|
ports:
|
|
- 8096:8096
|
|
- 7359:7359/udp
|
|
- 8920:8920
|
|
restart: unless-stopped
|
|
runtime: nvidia
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
|
|
tdarr:
|
|
container_name: tdarr
|
|
image: ghcr.io/haveagitgat/tdarr:latest
|
|
restart: unless-stopped
|
|
network_mode: bridge
|
|
ports:
|
|
- 8265:8265 # webUI port
|
|
- 8266:8266 # server port
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- UMASK_SET=002
|
|
- serverIP=0.0.0.0
|
|
- serverPort=8266
|
|
- webUIPort=8265
|
|
- internalNode=true
|
|
- inContainer=true
|
|
- ffmpegVersion=7
|
|
- nodeName=vmgpu
|
|
- auth=false
|
|
- maxLogSizeMB=10
|
|
- cronPluginUpdate="5 7 * * *"
|
|
- NVIDIA_DRIVER_CAPABILITIES=all
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
volumes:
|
|
- /mnt/configs/tdarr/server:/app/server
|
|
- /mnt/configs/tdarr/configs:/app/configs
|
|
- /mnt/configs/tdarr/logs:/app/logs
|
|
- /mnt/download:/media
|
|
- /mnt/transcode:/temp
|
|
devices:
|
|
- /dev/dri:/dev/dri
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
|
|
fileflows:
|
|
image: revenz/fileflows
|
|
restart: unless-stopped
|
|
runtime: nvidia
|
|
ports:
|
|
- "19200:5000"
|
|
environment:
|
|
- TempPathHost=/mnt/transcode
|
|
- TZ=Europe/Berlin
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- /mnt/transcode:/temp
|
|
- /mnt/download:/app/Data
|
|
- /mnt/configs/fileflows/logs:/app/Logs
|
|
- /mnt/configs/fileflows/common:/app/common
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu] |