This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathdocker-compose.yml
309 lines (293 loc) · 7.71 KB
/
docker-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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
---
version: '3'
services:
traefik:
image: traefik:v1.7
command: --web --docker --docker.watch --docker.domain=${DOMAIN} \
--docker.exposedbydefault=false --acme.domains=${DOMAIN}
container_name: traefik
hostname: traefik
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${CONFIG}/traefik/acme.json:/acme.json
- ${CONFIG}/traefik/traefik.toml:/etc/traefik/traefik.toml
- ${CONFIG}/traefik/.htpasswd:/etc/traefik/.htpasswd:ro
labels:
traefik.enable: "true"
traefik.frontend.rule: "Host:monitor.${DOMAIN}"
traefik.port: "8080"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- PGID
- PUID
- TZ
command: --schedule "0 0 6 * * *" --label-enable --cleanup
restart: unless-stopped
ddclient:
image: linuxserver/ddclient
container_name: ddclient
volumes:
- ${CONFIG}/ddclient:/config
labels:
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
sabnzbd:
image: linuxserver/sabnzbd:latest
container_name: sabnzbd
hostname: sabnzbd
ports:
- "8080:8080"
volumes:
- ${CONFIG}/sabnzbd:/config
- ${DOWNLOAD}/complete:/downloads
- ${DOWNLOAD}/incomplete:/incomplete-downloads
- ${DOWNLOAD}/watch:/watch
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "8080"
traefik.frontend.rule: "Host:sabnzbd.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
hostname: sonarr
ports:
- "8989:8989"
volumes:
- ${CONFIG}/sonarr:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/tv:/tv
- ${DATA}/anime:/anime
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "8989"
traefik.frontend.rule: "Host:sonarr.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
radarr:
image: linuxserver/radarr:latest
container_name: radarr
hostname: radarr
ports:
- "7878:7878"
volumes:
- ${CONFIG}/radarr:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/movies:/movies
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "7878"
traefik.frontend.rule: "Host:radarr.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
lidarr:
image: linuxserver/lidarr:latest
container_name: lidarr
hostname: lidarr
ports:
- "8686:8686"
volumes:
- ${CONFIG}/lidarr:/config
- /etc/localtime:/etc/localtime:ro
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/music:/music
environment:
- PGID
- PUID
labels:
traefik.enable: "true"
traefik.port: "8686"
traefik.frontend.rule: "Host:lidarr.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
lazylibrarian:
image: linuxserver/lazylibrarian:latest
container_name: lazylibrarian
hostname: lazylibrarian
ports:
- "5299:5299"
volumes:
- ${CONFIG}/lazylibrarian:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/books:/books
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "5299"
traefik.frontend.rule: "Host:lazylibrarian.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
mylar:
image: linuxserver/mylar:latest
container_name: mylar
hostname: mylar
ports:
- "8090:8090"
volumes:
- ${CONFIG}/mylar:/config
- ${DOWNLOAD}/complete:/downloads
- ${DATA}/comics:/comics
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "8090"
traefik.frontend.rule: "Host:mylar.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
nzbhydra:
image: linuxserver/nzbhydra2:latest
container_name: nzbhydra
hostname: nzbhydra
ports:
- "5076:5076"
volumes:
- ${CONFIG}/nzbhydra2:/config
- ${DOWNLOAD}/complete:/downloads
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "5076"
traefik.frontend.rule: "Host:nzbhydra.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
plex:
image: linuxserver/plex
container_name: plex
hostname: plex
ports:
- "32400:32400"
- "32400:32400/udp"
- "32469:32469"
- "32469:32469/udp"
- "1900:1900/udp"
volumes:
- ${CONFIG}/plex:/config
- ${DATA}/tv:/media/tv
- ${DATA}/movies:/media/movies
- ${DATA}/music:/media/music
- ${DATA}/anime:/media/anime
environment:
- PGID
- PUID
- TZ
- VERSION=latest
labels:
traefik.enable: "true"
traefik.port: "32400"
traefik.frontend.rule: "Host:plex.${DOMAIN}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
plexpy:
image: linuxserver/tautulli:latest
container_name: tautulli
hostname: tautulli
ports:
- "8181:8181"
volumes:
- ${CONFIG}/plexpy:/config
- ${CONFIG}/plex/Library/Application Support/Plex Media Server/Logs:/logs:ro
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "8181"
traefik.frontend.rule: "Host:tautulli.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
heimdall:
image: linuxserver/heimdall:latest
container_name: heimdall
hostname: heimdall
volumes:
- ${CONFIG}/heimdall:/config
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "80"
traefik.frontend.rule: "Host:${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
ombi:
image: linuxserver/ombi
container_name: ombi
hostname: ombi
ports:
- "3579:3579"
volumes:
- ${CONFIG}/ombi:/config
environment:
- PGID
- PUID
- TZ
labels:
traefik.enable: "true"
traefik.port: "3579"
traefik.frontend.rule: "Host:ombi.${DOMAIN}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
flexget:
image: cpoppema/docker-flexget
container_name: flexget
hostname: flexget
ports:
- "5050:5050"
volumes:
- ${CONFIG}/flexget:/config
- ${DOWNLOAD}/watch:/watch
environment:
- PGID
- PUID
- WEB_PASSWD=pNTgQj4hfJPPiGVFt9re
labels:
traefik.enable: "true"
traefik.port: "5050"
traefik.frontend.rule: "Host:flexget.${DOMAIN}"
traefik.frontend.auth.basic: "${HTPASSWD}"
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped