tdarr node compose file
Some checks are pending
PVE2 Infrastructure Deploy / terraform (push) Waiting to run

This commit is contained in:
admin 2026-02-09 08:50:55 -07:00
parent 32514c057f
commit fcc557b665

27
lxc3/tdarr-node.yml Normal file
View file

@ -0,0 +1,27 @@
services:
tdarr-node:
container_name: tdarr-node-gpu
image: haveagitgat/tdarr_node:latest
restart: unless-stopped
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=America/Edmonton
- serverIP=172.16.201.203 # The IP of your pve2-lxc3 (Server)
- serverPort=8266
- nodeName=RTX3050-Node
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=all,video,compute,utility
volumes:
- /docker/tdarr/configs:/app/configs
- /docker/tdarr/logs:/app/logs
- /mnt:/media # Must match the Server's mount path exactly
- /temp:/temp # Crucial: Must be shared/identical path to Server
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]