forked from serversathome/ServersatHome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtdarr.yaml
More file actions
38 lines (38 loc) · 985 Bytes
/
Copy pathtdarr.yaml
File metadata and controls
38 lines (38 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
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=America/New_York
- PUID=568
- PGID=568
- UMASK_SET=002
- serverIP=0.0.0.0
- serverPort=8266
- webUIPort=8265
- internalNode=true
- inContainer=true
- ffmpegVersion=6
- nodeName=MyInternalNode
- NVIDIA_DRIVER_CAPABILITIES=all
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- ./configs/tdarr/server:/app/server
- ./configs/tdarr/configs:/app/configs
- ./configs/tdarr/logs:/app/logs
- /mnt/tank/media:/media
- ./configs/tdarr/transcode_cache:/temp
devices:
- /dev/dri:/dev/dri
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]