tdarr node compose file
Some checks are pending
PVE2 Infrastructure Deploy / terraform (push) Waiting to run
Some checks are pending
PVE2 Infrastructure Deploy / terraform (push) Waiting to run
This commit is contained in:
parent
32514c057f
commit
fcc557b665
1 changed files with 27 additions and 0 deletions
27
lxc3/tdarr-node.yml
Normal file
27
lxc3/tdarr-node.yml
Normal 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]
|
||||
Loading…
Reference in a new issue