Tdaar-Node. Tested on Synology and Linux machine
· 1.0 KiB · Text
Raw
version: "3.9"
services:
tdarr-node:
image: ghcr.io/haveagitgat/tdarr_node:latest
container_name: Tdarr-node
security_opt:
- no-new-privileges:true
ports:
- 8265:8265
- 8266:8266
environment:
- TZ=Europe/Stockholm #Your TZ
- PUID=1026
- PGID=100
- serverIP=192.168.0.1 #Your-main-Tdaar-server-IP
- serverport=8266
- ffmpegVersion=6
- UMASK_SET=002
- nodeID=Hund med bröd #Your-Node-Name
volumes:
- /volume1/docker/tdarr/server:/app/server #Create-folder-tdarr/server
- /volume1/docker/tdarr/configs:/app/configs # / / / / / / tdarr/configs
- /volume1/docker/tdarr/logs:/app/logs # / / / / / / tdarr/logs
- /volume1//plex/media:/media #path to your movies library, you can mount the folder on your server
- /volume1//plex/media/temp:/temp #Media & Temp should be navigated to thesame as main server, I mounted it using NFS
restart: unless-stopped
1 | version: "3.9" |
2 | services: |
3 | tdarr-node: |
4 | image: ghcr.io/haveagitgat/tdarr_node:latest |
5 | container_name: Tdarr-node |
6 | |
7 | security_opt: |
8 | - no-new-privileges:true |
9 | |
10 | ports: |
11 | - 8265:8265 |
12 | - 8266:8266 |
13 | environment: |
14 | - TZ=Europe/Stockholm #Your TZ |
15 | - PUID=1026 |
16 | - PGID=100 |
17 | - serverIP=192.168.0.1 #Your-main-Tdaar-server-IP |
18 | - serverport=8266 |
19 | - ffmpegVersion=6 |
20 | - UMASK_SET=002 |
21 | - nodeID=Hund med bröd #Your-Node-Name |
22 | volumes: |
23 | - /volume1/docker/tdarr/server:/app/server #Create-folder-tdarr/server |
24 | - /volume1/docker/tdarr/configs:/app/configs # / / / / / / tdarr/configs |
25 | - /volume1/docker/tdarr/logs:/app/logs # / / / / / / tdarr/logs |
26 | - /volume1//plex/media:/media #path to your movies library, you can mount the folder on your server |
27 | - /volume1//plex/media/temp:/temp #Media & Temp should be navigated to thesame as main server, I mounted it using NFS |
28 | |
29 | |
30 | restart: unless-stopped |