forked from anandslab/docker-traefik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-t1-obsolete.yml
executable file
·353 lines (341 loc) · 13.3 KB
/
docker-compose-t1-obsolete.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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
version: "3.7"
# DOCKER TRAEFIK 1 IS NO LONGER BEING MAINTAINED. CHECK INSTRUCTIONS FOR DOCKER TRAEFIK V2 SETUP.
################ THESE ARE APPS I USED TO USE BUT NOT ANYMORE ###########
########################### NETWORKS
networks:
t1_proxy:
external:
name: t1_proxy
default:
driver: bridge
########################### SERVICES
services:
# Monitorr - Webfront to display the status of any webapp or service
monitorr:
image: monitorr/monitorr
container_name: monitorr
hostname: monitorr
restart: unless-stopped
networks:
- t1_proxy
# ports:
# - "${MONITORR_PORT}:80"
volumes:
- ${USERDIR}/docker/monitorr:/app
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
labels:
traefik.enable: "true"
traefik.backend: monitorr
traefik.protocol: http
traefik.port: 80
traefik.frontend.rule: Host:monitorr.${DOMAINNAME}
traefik.frontend.headers.SSLHost: monitorr.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
# traefik.frontend.headers.frameDeny: "true" #customFrameOptionsValue overrides this
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"
# Varken - Monitor Plex, Sonarr, Radarr, and Other Data
varken:
image: boerderij/varken
hostname: varken
container_name: varken
restart: unless-stopped
networks:
- t1_proxy
- default
volumes:
- ${USERDIR}/docker/varken:/config
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
VRKN_GLOBAL_SONARR_SERVER_IDS: 1
VRKN_GLOBAL_RADARR_SERVER_IDS: 1
VRKN_GLOBAL_LIDARR_SERVER_IDS: "false"
VRKN_GLOBAL_TAUTULLI_SERVER_IDS: 1
VRKN_GLOBAL_OMBI_SERVER_IDS: "false"
VRKN_GLOBAL_SICKCHILL_SERVER_IDS: "false"
VRKN_GLOBAL_UNIFI_SERVER_IDS: 1
VRKN_INFLUXDB_URL: ${SERVER_IP}
VRKN_INFLUXDB_PORT: 8086
VRKN_INFLUXDB_SSL: "false"
VRKN_INFLUXDB_VERIFY_SSL: "false"
VRKN_INFLUXDB_USERNAME: ${VARKEN_USER}
VRKN_INFLUXDB_PASSWORD: ${VARKEN_PASS}
VRKN_TAUTULLI_1_URL: ${SERVER_IP}:${TAUTULLI_PORT}
VRKN_TAUTULLI_1_FALLBACK_IP: 1.1.1.1
VRKN_TAUTULLI_1_APIKEY: ${TAUTULLI_API_KEY}
VRKN_TAUTULLI_1_SSL: "false"
VRKN_TAUTULLI_1_VERIFY_SSL: "false"
VRKN_TAUTULLI_1_GET_ACTIVITY: "true"
VRKN_TAUTULLI_1_GET_ACTIVITY_RUN_SECONDS: 30
VRKN_TAUTULLI_1_GET_STATS: "true"
VRKN_TAUTULLI_1_GET_STATS_RUN_SECONDS: 3600
VRKN_SONARR_1_URL: ${SERVER_IP}:${SONARR_PORT}
VRKN_SONARR_1_APIKEY: ${SONARR_API_KEY}
VRKN_SONARR_1_SSL: "false"
VRKN_SONARR_1_VERIFY_SSL: "false"
VRKN_SONARR_1_MISSING_DAYS: 7
VRKN_SONARR_1_MISSING_DAYS_RUN_SECONDS: 300
VRKN_SONARR_1_FUTURE_DAYS: 1
VRKN_SONARR_1_FUTURE_DAYS_RUN_SECONDS: 300
VRKN_SONARR_1_QUEUE: "true"
VRKN_SONARR_1_QUEUE_RUN_SECONDS: 300
VRKN_RADARR_1_URL: ${SERVER_IP}:${RADARR_PORT}
VRKN_RADARR_1_APIKEY: ${RADARR_API_KEY}
VRKN_RADARR_1_SSL: "false"
VRKN_RADARR_1_VERIFY_SSL: "false"
VRKN_RADARR_1_QUEUE: "true"
VRKN_RADARR_1_QUEUE_RUN_SECONDS: 300
VRKN_RADARR_1_GET_MISSING: "true"
VRKN_RADARR_1_GET_MISSING_RUN_SECONDS: 300
VRKN_UNIFI_1_URL: ${UNIFI_HOST}
VRKN_UNIFI_1_USERNAME: ${UNIFI_USER}
VRKN_UNIFI_1_PASSWORD: ${UNIFI_PASS}
VRKN_UNIFI_1_SITE: default
VRKN_UNIFI_1_USG_NAME: USG
VRKN_UNIFI_1_SSL: "true"
VRKN_UNIFI_1_VERIFY_SSL: "false"
VRKN_UNIFI_1_GET_USG_STATS_RUN_SECONDS: 300
# Telly Tv- IPTV proxy for Plex
# https://hub.docker.com/r/tellytv/telly
# https://github.com/tellytv/telly/wiki/Docker-Walkthrough%3A-Linux-with-config-file
# https://github.com/tellytv/telly/wiki/Adding-Telly-to-Plex
# Telly uses port 6077
# In plex, the DVR IP will be http://HostIP:6077
# EPG data will be at http://HostIP:6077/epg.xml
# xTeve is better than TellyTV - Replaced on Jan 09, 2020
tellytv:
image: tellytv/telly:dev-ffmpeg
container_name: tellytv
hostname: tellytv
restart: unless-stopped
network_mode: host
ports:
- "1900:1900/udp"
environment:
- TZ=${TZ}
volumes:
- ${USERDIR}/docker/telly/telly.config.toml:/etc/telly/telly.config.toml
# Traefik Home - Dashboard
home:
image: lobre/traefik-home
container_name: traefik-home
hostname: traefik-home
restart: unless-stopped
networks:
- t1_proxy
# ports:
# - "${SMOKEPING_PORT}:80"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
labels:
#Additional label - add this to all containers to make them appear on dashboard
traefik.home: "true"
#Regular labels
traefik.enable: "true"
traefik.backend: home
traefik.protocol: http
traefik.port: 80
traefik.frontend.rule: Host:home.${DOMAINNAME}
traefik.frontend.headers.SSLHost: home.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
# traefik.frontend.headers.frameDeny: "true" #customFrameOptionsValue overrides this
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"
# MiFlora MQTT Daemon - BT to MQTT Daemon for MiFlora Sensors
miflora:
image: raymondmm/miflora-mqtt
container_name: miflora-mqtt
hostname: miflora
environment:
- TZ=${TZ}
network_mode: host
# user: "0"
volumes:
- ${USERDIR}/docker/miflora-mqtt/config:/config
restart: unless-stopped
# xTeve - IPTV proxy for Plex
xteve:
image: alturismo/xteve
container_name: xteve
hostname: xteve
restart: unless-stopped
# network_mode: host
networks:
- t1_proxy
- default
ports:
- "34400:34400"
- "1901:1900"
# user: "0"
# logging:
# options:
# max-size: "10m"
# max-files: 3
environment:
TZ: ${TZ}
volumes:
- ${USERDIR}/docker/xteve:/config:rw
- /dev/shm:/tmp/xteve
labels:
traefik.enable: "true"
traefik.backend: xteve
traefik.protocol: http
traefik.port: 34400
traefik.frontend.rule: Host:xteve.${DOMAINNAME}
traefik.frontend.headers.SSLHost: xteve.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
# traefik.frontend.headers.frameDeny: "true" #customFrameOptionsValue overrides this
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"
# MQTT Admin - Web Based MQTT Client
mqttweb:
image: dersimn/mqtt-admin
container_name: mqttweb
hostname: mqttweb
restart: unless-stopped
networks:
- t1_proxy
# ports:
# - "80:80"
environment:
MQTT_HOST: "$SERVER_IP:9001"
labels:
traefik.enable: "true"
traefik.backend: mqttweb
traefik.protocol: http
traefik.port: 80
traefik.frontend.rule: Host:mqttweb.${DOMAINNAME}
traefik.frontend.headers.SSLHost: mqttweb.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
# traefik.frontend.headers.frameDeny: "true" #customFrameOptionsValue overrides this
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"
# Piwigo - Image Gallery
piwigo:
image: linuxserver/piwigo
container_name: piwigo
hostname: piwigo
restart: unless-stopped
networks:
- t1_proxy
ports:
- "${PIWIGO_PORT}:80"
volumes:
- ${USERDIR}/docker/piwigo:/config
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
labels:
traefik.enable: "true"
traefik.backend: piwigo
traefik.protocol: http
traefik.port: 80
traefik.frontend.rule: Host:piwigo.${DOMAINNAME}
traefik.frontend.headers.SSLHost: piwigo.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
# traefik.frontend.headers.frameDeny: "true" #customFrameOptionsValue overrides this
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"
# Logarr - Log Management
logarr:
image: monitorr/logarr
container_name: logarr
hostname: logarr
restart: unless-stopped
networks:
- t1_proxy
# ports:
# - "${LOGARR_PORT}:80"
volumes:
- ${USERDIR}/docker/logarr/config:/config
- ${USERDIR}/docker/logarr/logs:/var/log/logarrlogs
environment:
TZ: ${TZ}
labels:
traefik.enable: "true"
traefik.backend: logarr
traefik.protocol: http
traefik.port: 80
traefik.frontend.rule: Host:logarr.${DOMAINNAME}
traefik.frontend.headers.SSLHost: logarr.${DOMAINNAME}
traefik.docker.network: t1_proxy
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
traefik.frontend.headers.customFrameOptionsValue: "allow-from https:${DOMAINNAME}"
traefik.frontend.auth.forward.address: "http://oauth:4181"
traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
traefik.frontend.auth.forward.trustForwardHeader: "true"