-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradarr.yml
More file actions
134 lines (134 loc) · 2.83 KB
/
Copy pathradarr.yml
File metadata and controls
134 lines (134 loc) · 2.83 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
---
services:
radarr:
image: hotio/radarr
container_name: radarr
restart: always
volumes:
- radarr_config:/config
- radarr_movies:/movies
- radarr_movies_kids:/kids_movies
- radarr_torrents:/data
ports:
- "7878:7878"
environment:
- PUID=1000
- PGID=100
- TZ=Europe/London
- UMASK_SET=022 #optional
sonarr:
image: hotio/sonarr
container_name: sonarr
restart: always
volumes:
- sonarr_config:/config
- sonarr_tvshows:/tvshows
- sonarr_tvshows_kids:/tvshows_kids
- radarr_torrents:/data
ports:
- "8989:8989"
environment:
- PUID=1000
- PGID=100
- TZ=Europe/London
- UMASK_SET=022 #optional
prowlarr:
image: hotio/prowlarr
container_name: prowlarr
restart: always
volumes:
- prowlarr_config:/config
ports:
- "9696:9696"
environment:
- PUID=1000
- PGID=100
- TZ=Europe/London
- UMASK_SET=022 #optional
qbittorrent:
image: gists/qbittorrent
container_name: qbittorrent
ports:
- "8081:8081"
- "6881:6881"
- "6881:6881/udp"
volumes:
- radarr_torrents:/data
environment:
- UID=1000
- WEB_PORT=8081
restart: always
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=info
- TZ=Europe/Paris
restart: always
volumes:
radarr_movies:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/media/movies'
radarr_movies_kids:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/media/kids_movies'
radarr_torrents:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/data/torrents'
radarr_config:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/docker/radarr/config'
radarr_downloads:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/docker/radarr/downloads'
prowlarr_config:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/docker/prowlarr/config'
sonarr_tvshows:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/media/tv_shows'
sonarr_tvshows_kids:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/media/kids_tv_shows'
sonarr_config:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/docker/sonarr/config'
lidarr_config:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/lv_data/docker/lidarr/config'
lidarr_music:
driver: local
driver_opts:
type: none
o: bind
device: '/mnt/media/main'