-
Notifications
You must be signed in to change notification settings - Fork 45
/
tdarr.yaml
executable file
·51 lines (49 loc) · 1.14 KB
/
tdarr.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
services:
tdarr:
image: haveagitgat/tdarr:latest
container_name: tdarr
restart: always
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- serverIP=0.0.0.0
- serverPort=8266
- webUIPort=8265
volumes:
- torrents:/media
- transcodes:/temp
- configtdarrv2:/app/server
- settingstdarrv2:/app/configs
tdarr_node:
image: haveagitgat/tdarr_node:latest
container_name: tdarr_node
restart: always
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- nodeID=Node1
- nodeIP=tdarr_node
- nodePort=8267
- serverIP=tdarr
- serverPort=8266
volumes:
- torrents:/media
- transcodes:/temp
- settingstdarrv2:/app/configs
labels:
- "traefik.enable=false"
volumes:
configtdarrv2:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/tdarrv2/server
settingstdarrv2:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/tdarrv2/configs
transcodes:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/tdarrv2/transcodes