This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontent-compose.yml
235 lines (212 loc) · 6.75 KB
/
content-compose.yml
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
version: "3"
services:
reverse-proxy:
image: traefik:latest
ports:
- "80:80"
- "443:443"
- "8080:8080" # Webinterface
volumes:
- /var/run/docker.sock:/var/run/docker.sock
deluge:
image: linuxserver/deluge:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
ports:
- "8112:8112"
- "5846:5846"
links:
- reverse-proxy
#vpn: # disabled as VPN Routing now gets done somewhere else in my Network
#image: dperson/openvpn-client:latest
#cap_add:
# - net_admin # required to modify network interfaces
#restart: unless-stopped
#volumes:
# - /dev/net:/dev/net:z # tun device
# - ${ROOT}/config/vpn:/vpn # OpenVPN configuration
#security_opt:
# - label:disable
#ports:
# - 8112:8112 # port for deluge web UI to be reachable from local network
#command: '-f "" -r 192.168.1.0/24' # enable firewall and route local network traffic
deluge1:
image: linuxserver/deluge:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/downloads:/downloads # downloads folder
- ${NAS}/config/deluge:/config # config files
ports:
- target: 8112
published: 8112
protocol: tcp
mode: ${MODE}
- target: 5846
published: 5846
protocol: tcp
mode: ${MODE}
jackett:
image: linuxserver/jackett:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- /etc/localtime:/etc/localtime:ro
- ${NAS}/downloads/torrent-blackhole:/downloads # place where to put .torrent files for manual download
- ${NAS}/config/jackett:/config # config files
ports:
- target: 9117
published: 9117
protocol: tcp
mode: ${MODE}
sabnzbd:
image: linuxserver/sabnzbd
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/downloads:/downloads # download folder
- ${NAS}/config/sabnzbd:/config # config files
ports:
- target: 8080
published: 6799 # ####evtl switcged
protocol: tcp
mode: ${MODE}
sonarr:
image: linuxserver/sonarr:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- /etc/localtime:/etc/localtime:ro
- ${NAS}/config/sonarr:/config # config files
- ${NAS}/complete/tv:/tv # tv shows folder
- ${NAS}/downloads:/downloads # download folder
ports:
- target: 8989
published: 8989
protocol: tcp
mode: ${MODE}
radarr:
image: linuxserver/radarr:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- /etc/localtime:/etc/localtime:ro
- ${NAS}/config/radarr:/config # config files
- ${NAS}/complete/movies:/movies # movies folder
- ${NAS}/downloads:/downloads # download folder
ports:
- target: 7878
published: 7878
protocol: tcp
mode: ${MODE}
plex: # you could use Jellyfin instead ( FOSS )
image: linuxserver/plex:${PLEXTAG}
restart: unless-stopped
environment:
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/config/plex/db:/config # plex database
- ${NAS}/plextranscode:/transcode # temp transcoded files
- ${NAS}/complete:/data # media library
- ${NAS}/complete/music:/music # music
ports:
- target: 32400
published: 32400
protocol: tcp
mode: ${MODE}
bazarr:
image: linuxserver/bazarr:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
- UMASK_SET=022 #optional
volumes:
- ${NAS}/config/bazarr:/config # config files
- ${NAS}/complete/movies:/movies # movies folder
- ${NAS}/complete/tv:/tv # tv shows folder
ports:
- target: 6767
published: 6767
protocol: tcp
mode: ${MODE}
prowlarr:
image: linuxserver/prowlarr:nightly
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/config/prowlarr:/config # config files
ports:
- target: 9696
published: 9696
protocol: tcp
mode: ${MODE}
lidarr:
image: linuxserver/lidarr:nightly
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/config/lidarr:/config # config files
- ${NAS}/complete/music:/music # music folder
- ${NAS}/downloads:/downloads # download shows folder
ports:
- target: 8686
published: 8686
protocol: tcp
mode: ${MODE}
readarr:
image: linuxserver/readarr:nightly
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/config/readarr:/config # config files
- ${NAS}/complete/books:/books # music folder
- ${NAS}/downloads:/downloads # download shows folder
ports:
- target: 8787
published: 8787
protocol: tcp
mode: ${MODE}
minecraft:
image: linuxserver/minecraft:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${NAS}/config/minecraft:/config # config files
- ${NAS}/minecraft:/data # minecraft data
ports:
- target: 25565
published: 25565
protocol: tcp
mode: ${MODE}