forked from anandslab/docker-traefik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-t2-obsolete.yml
executable file
·1824 lines (1759 loc) · 59.8 KB
/
docker-compose-t2-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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
THIS FILE NEEDS A CLEANUP
################### CAUTION CAUTION CAUTION ###############
# These are apps that I do not use anymore or tested but found to be not useful to me.
# Docker-compose snippets for services below worked for me when I used/tried them.
# My stack and Docker itself continue to change and evolve constantly.
# I do not actively check or maintain these for compatibility. Therefore, there is no guarantee that they will continue to work.
########################### SERVICES
services:
# MiFlora MQTT Daemon - BT to MQTT Daemon for MiFlora Sensors
miflora:
image: raymondmm/miflora-mqtt
container_name: miflora-mqtt
environment:
- TZ=$TZ
network_mode: host
# user: "0"
volumes:
- $USERDIR/docker/miflora-mqtt/config:/config
restart: unless-stopped
# Varken - Monitor Plex, Sonarr, Radarr, and Other Data
varken:
image: boerderij/varken
container_name: varken
restart: unless-stopped
networks:
- t2_proxy
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
# xTeve - IPTV proxy for Plex
xteve:
image: alturismo/xteve
container_name: xteve
restart: unless-stopped
# network_mode: host
networks:
- t2_proxy
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"
## HTTP Routers
- "traefik.http.routers.xteve-rtr.entrypoints=https"
- "traefik.http.routers.xteve-rtr.rule=Host(`xteve.$DOMAINNAME`)"
- "traefik.http.routers.xteve-rtr.tls=true"
## Middlewares
- "traefik.http.routers.xteve-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.xteve-rtr.service=xteve-svc"
- "traefik.http.services.xteve-svc.loadbalancer.server.port=34400"
# Cloud IDE - Editing
cloud9:
image: linuxserver/cloud9
container_name: cloud9
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
ports:
- "$CLOUD9_PORT:8000"
volumes:
- $USERDIR/server/scripts:/code
- /var/run/docker.sock:/var/run/docker.sock
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
# PASSWORD: $CLOUD9_PASSWORD
# USERNAME: $CLOUD9_USERNAME
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.cloud9-rtr.entrypoints=https"
- "traefik.http.routers.cloud9-rtr.rule=Host(`cloud9.$DOMAINNAME`)"
- "traefik.http.routers.cloud9-rtr.tls=true"
## Middlewares
- "traefik.http.routers.cloud9-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.cloud9-rtr.service=cloud9-svc"
- "traefik.http.services.cloud9-svc.loadbalancer.server.port=8000"
# Cloud Commander - web file manager
cloudcmd:
image: coderaiser/cloudcmd
container_name: cloudcmd
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
volumes:
- $USERDIR/docker/cloudcmd:/root
- $USERDIR:/mnt/fs
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.cloudcmd-rtr.entrypoints=https"
- "traefik.http.routers.cloudcmd-rtr.rule=Host(`cloudcmd.$DOMAINNAME`)"
- "traefik.http.routers.cloudcmd-rtr.tls=true"
## Middlewares
- "traefik.http.routers.cloudcmd-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.cloudcmd-rtr.service=cloudcmd-svc"
- "traefik.http.services.cloudcmd-svc.loadbalancer.server.port=8000"
# VSCode Server - VSCode Editing
# WARNING: This appears to change permissions of all files to PUID:PGID
code-server:
image: linuxserver/code-server:latest
container_name: code-server
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
ports:
- "$CODE_SERVER_PORT:8443"
volumes:
- $USERDIR/docker/code-server:/config
- $USERDIR:/home/user
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
PASSWORD: $VSCODE_PASSWORD
# SUDO_PASSWORD: $VSCODE_SUDO_PASSWORD
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.code-server-rtr.entrypoints=https"
- "traefik.http.routers.code-server-rtr.rule=Host(`code.$DOMAINNAME`)"
- "traefik.http.routers.code-server-rtr.tls=true"
## Middlewares
- "traefik.http.routers.code-server-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.code-server-rtr.service=code-server-svc"
- "traefik.http.services.code-server-svc.loadbalancer.server.port=8443"
# Cloudflare DDNS - Dynamic DNS Updater
cloudddns:
container_name: cloudddns
restart: always
image: joshava/cloudflare-ddns
volumes:
- $USERDIR/docker/cloudflare-ddns/config.yaml:/app/config.yaml
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
# SmokePing - Network latency Monitoring
smokeping:
image: linuxserver/smokeping:latest
container_name: smokeping
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$SMOKEPING_PORT:80"
volumes:
- $DOCKERDIR/smokeping/config:/config
- $DOCKERDIR/smokeping/data:/data
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.smokeping-rtr.entrypoints=https"
- "traefik.http.routers.smokeping-rtr.rule=HostHeader(`smokeping.$DOMAINNAME`)"
## Middlewares
- "traefik.http.routers.smokeping-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.smokeping-rtr.service=smokeping-svc"
- "traefik.http.services.smokeping-svc.loadbalancer.server.port=80"
# HA-Dockermon - Manage Docker containers in Home Assistant
ha-dockermon:
image: philhawthorne/ha-dockermon:latest
container_name: ha-dockermon
restart: unless-stopped
networks:
- socket_proxy
security_opt:
- no-new-privileges:true
ports:
- "$HA_DOCKERMON_PORT:8126"
volumes:
- $DOCKERDIR/ha-dockermon:/config
# - /var/run/docker.sock:/var/run/docker.sock
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
DOCKER_HOST: tcp://socket-proxy:2375
# Postgres - Database
postgres:
image: postgres
container_name: postgres
restart: always
security_opt:
- no-new-privileges:true
volumes:
- $DOCKERDIR/postgres:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: $STATPING_DB_PASS
POSTGRES_USER: $STATPING_DB_USER
POSTGRES_DB: $STATPING_DB
# UniFi Controller - Managing UniFi Network
unifi:
container_name: unifi
image: jacobalberty/unifi:stable
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
ports:
- "8080:8080"
- "8443:8443"
- "3478:3478/udp"
- "10001:10001/udp"
- "6789:6789"
volumes:
- ${DOCKERDIR}/unifi:/unifi
environment:
UNIFI_UID: $PUID
UNIFI_GID: $PGID
TZ: America/New_York
RUNAS_UID0: "false"
BIND_PRIV: "false"
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.unifi-rtr.entrypoints=https"
- "traefik.http.routers.unifi-rtr.rule=HostHeader(`ufi.$DOMAINNAME`)"
## Middlewares
- "traefik.http.routers.unifi-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.unifi-rtr.service=unifi-svc"
- "traefik.http.services.unifi-svc.loadbalancer.server.port=8443"
# Ouroboros - Automatic Docker Container Updates
ouroboros:
image: pyouroboros/ouroboros:latest
container_name: ouroboros
restart: unless-stopped
networks:
- default
- socket_proxy
# depends_on:
# - socket-proxy
volumes:
# - /var/run/docker.sock:/var/run/docker.sock # Use Docker Socket Proxy instead for improved security
- $DOCKERDIR/ouroboros/config.json:/root/.docker/config.json:ro
environment:
TZ: $TZ
INTERVAL: 86400
LOG_LEVEL: info
SELF_UPDATE: "true"
CLEANUP: "true"
IGNORE: traefik influxdb hassio_dns homeassistant hassio_supervisor addon_core_check_config addon_62c7908d_autobackup plexms
NOTIFIERS: "tgram://$TGRAM_BOT_TOKEN/$TGRAM_CHAT_ID/"
DOCKER_SOCKETS: tcp://socket-proxy:2375 # POST to be enabled on Socket Proxy
# Docker Socket Proxy - Security Enchanced Proxy for Docker Socket
socket-proxy:
container_name: socket-proxy
image: tecnativa/docker-socket-proxy
restart: always
networks:
# t2_proxy:
socket_proxy:
ipv4_address: 192.168.91.254 # You can specify a static IP
privileged: true
ports:
- "2375:2375"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- LOG_LEVEL=info # debug,info,notice,warning,err,crit,alert,emerg
## Variables match the URL prefix (i.e. AUTH blocks access to /auth/* parts of the API, etc.).
# 0 to revoke access.
# 1 to grant access.
## Granted by Default
- EVENTS=1
- PING=1
- VERSION=1
## Revoked by Default
# Security critical
- AUTH=0
- SECRETS=0
- POST=1 # Ouroboros
# Not always needed
- BUILD=0
- COMMIT=0
- CONFIGS=0
- CONTAINERS=1 # Traefik, portainer, etc.
- DISTRIBUTION=0
- EXEC=0
- IMAGES=1 # Portainer
- INFO=1 # Portainer
- NETWORKS=1 # Portainer
- NODES=0
- PLUGINS=0
- SERVICES=1 # Portainer
- SESSION=0
- SWARM=0
- SYSTEM=0
- TASKS=1 # Portaienr
- VOLUMES=1 # Portainer
# Traefik - Custom Error Pages
# Obsoleted because I did not spend any more time on it to customize and don't see the value
traefik-error-pages:
container_name: traefik-error-pages
image: guillaumebriday/traefik-custom-error-pages
restart: unless-stopped
networks:
- t2_proxy
labels:
- "traefik.enable=true"
# HTTP Routers
- "traefik.http.routers.traefik-error-pages-rtr.entrypoints=https"
- "traefik.http.routers.traefik-error-pages-rtr.rule=HostRegexp(`{host:.+}`)"
- "traefik.http.routers.traefik-error-pages-rtr.priority=1"
# Middlewares
- "traefik.http.routers.traefik-error-pages-rtr.middlewares=traefik-error-pages"
- "traefik.http.middlewares.traefik-error-pages.errors.service=traefik-error-pages-svc"
- "traefik.http.middlewares.traefik-error-pages.errors.status=401,403,404,429,500,502,503"
- "traefik.http.middlewares.traefik-error-pages.errors.query=/{status}.html"
# HTTP Services
- "traefik.http.routers.traefik-error-pages-rtr.service=traefik-error-pages-svc"
- "traefik.http.services.traefik-error-pages-svc.loadbalancer.server.port=80"
# Ombi - Media Requests
ombi:
image: linuxserver/ombi:latest
container_name: ombi
restart: unless-stopped
networks:
- t2_proxy
# ports:
# - "$OMBI_PORT:3579"
security_opt:
- no-new-privileges:true
volumes:
- $DOCKERDIR/appdata/ombi:/config
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
BASE_URL: /ombi #optional
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.ombi-rtr.entrypoints=https"
- "traefik.http.routers.ombi-rtr.rule=Host(`ombi.$DOMAINNAME`)"
## Middlewares
- "traefik.http.routers.ombi-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.ombi-rtr.service=ombi-svc"
- "traefik.http.services.ombi-svc.loadbalancer.server.port=3579"
# Emby - Media Server
embyms:
image: emby/embyserver:latest
container_name: embyms
restart: unless-stopped
networks:
- t2_proxy
devices:
- /dev/dri:/dev/dri # for harware transcoding
security_opt:
- no-new-privileges:true
ports:
- "$EMBY_PORT:8096/tcp"
- "8920:8920/tcp"
volumes:
- /etc/localtime:/etc/localtime:ro
- $DOCKERDIR/appdata/embyms:/config
- /dev/shm:/data/transcode
- $DATADIR/media:/data/media
- $DATADIR/Downloads:/data/downloads
environment:
TZ: $TZ
HOSTNAME: "nucEmby"
UID: $PUID
GID: $PGID
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.embyms-rtr.entrypoints=https"
- "traefik.http.routers.embyms-rtr.rule=Host(`nucemby.$DOMAINNAME`)"
## Middlewares
- "traefik.http.routers.embyms-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.embyms-rtr.service=embyms-svc"
- "traefik.http.services.embyms-svc.loadbalancer.server.port=8096"
# Plex-Sync - For Syncing watched status between plex servers
plex-sync:
image: patsissons/plex-sync:develop
container_name: plex-sync
security_opt:
- no-new-privileges:true
environment:
INITIAL_RUN: "true"
# DRY_RUN: 0
CRON_SCHEDULE: "*/5 * * * *"
SECTION_MAPS: $SYN_PLEX/$SYN_PLEX_HOLLYWOOD $NUC_PLEX/$NUC_PLEX_HOLLYWOOD | $SYN_PLEX/$SYN_PLEX_TVSHOWS $NUC_PLEX/$NUC_PLEX_TVSHOWS | $SYN_PLEX/$SYN_PLEX_INDIAN $NUC_PLEX/$NUC_PLEX_INDIAN | $SYN_PLEX/$SYN_PLEX_KOLLYWOOD $NUC_PLEX/$NUC_PLEX_KOLLYWOOD | $SYN_PLEX/$SYN_PLEX_DOCMOVIES $NUC_PLEX/$NUC_PLEX_DOCMOVIES | $SYN_PLEX/$SYN_PLEX_DOCSHOWS $NUC_PLEX/$NUC_PLEX_DOCSHOWS | $SYN_PLEX/$SYN_PLEX_KIDSMOVIES $NUC_PLEX/$NUC_PLEX_KIDSMOVIES | $SYN_PLEX/$SYN_PLEX_INTERNATIONAL $NUC_PLEX/$NUC_PLEX_INTERNATIONAL
restart: unless-stopped
# SMTP to Telegram - Send SMTP Notifications as Telegram Message
# Use case: https://github.com/htpcBeginner/docker-traefik/issues/78
smtp_to_telegram:
image: kostyaesmukov/smtp_to_telegram
container_name: smtp_to_telegram
restart: always
networks:
- default
environment:
TZ: $TZ
ST_TELEGRAM_CHAT_IDS: $TGRAM_CHAT_ID
ST_TELEGRAM_BOT_TOKEN: $TGRAM_BOT_TOKEN
ST_TELEGRAM_MESSAGE_TEMPLATE: "{subject}\\n{body}"
# WatchTower - Automatic Docker Container Updates
watchtower:
image: containrrr/watchtower
container_name: watchtower
restart: unless-stopped
networks:
- socket_proxy
depends_on:
- socket-proxy
environment:
TZ: $TZ
WATCHTOWER_CLEANUP: "true"
WATCHTOWER_REMOVE_VOLUMES: "true"
WATCHTOWER_INCLUDE_STOPPED: "true"
WATCHTOWER_NO_STARTUP_MESSAGE: "false"
WATCHTOWER_SCHEDULE: "0 30 12 * * *" # Everyday at 12:30
WATCHTOWER_NOTIFICATIONS: shoutrrr
WATCHTOWER_NOTIFICATION_URL: "telegram://$TGRAM_BOT_TOKEN@telegram?channels=$TGRAM_CHAT_ID"
WATCHTOWER_NOTIFICATIONS_LEVEL: info
DOCKER_HOST: tcp://socket-proxy:2375
DOCKER_API_VERSION: "1.40"
# Rclone - Google Drive Mount
# https://github.com/openbridge/ob_bulkstash/issues/19
# https://github.com/romancin/rclonebrowser-docker
# https://github.com/romancin/rclonebrowser-docker
# https://hub.docker.com/r/d2dyno/rclone-gui
rclone-drive:
container_name: rclone-drive
hostname: rclone-drive
image: rclone/rclone:1.52.3 #1.50.2 # latest v1.53 and above getting 403 DownloadQuotaExceeded error.
restart: always
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
user: $PUID:$PGID
command:
"mount shb-drive: /data/shb-drive \
--read-only \
--use-mmap \
--allow-other \
--allow-non-empty \
--dir-cache-time=1000h \
--poll-interval=15s \
--uid=1000 \
--gid=1000 \
--buffer-size=128M \
--umask=002 \
--drive-chunk-size=128M \
--user-agent=dvm300drive \
--cache-dir=/data/cache/shb-drive \
--vfs-cache-mode=full \
--vfs-cache-max-age=336h \
--vfs-cache-max-size=768G \
--vfs-read-chunk-size=16M \
--vfs-read-chunk-size-limit=256M \
--log-file /config/rclone/logs/shb-drive.log \
--log-level NOTICE"
#--bwlimit 150M \
#--bwlimit-file 40M \
devices:
- /dev/fuse
volumes:
- $DOCKERDIR/appdata/rclone:/config/rclone
- /media/shb-drive:/data/shb-drive:shared
- /media/hdd1/cache/shb-drive:/data/cache/shb-drive
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- /etc/fuse.conf:/etc/fuse.conf:ro
environment:
- TZ=$TZ
# Rclone - Google Drive Mount
rclone-crypt:
container_name: rclone-crypt
hostname: rclone-crypt
image: rclone/rclone:1.52.3 #1.50.2 # latest v1.53 and above getting 403 DownloadQuotaExceeded error.
restart: always
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
user: $PUID:$PGID
command:
"mount shb-crypt: /data/shb-crypt \
--use-mmap \
--allow-other \
--allow-non-empty \
--dir-cache-time=1000h \
--poll-interval=15s \
--uid=1000 \
--gid=1000 \
--buffer-size=128M \
--umask=002 \
--drive-chunk-size=128M \
--user-agent=dvm300crypt \
--cache-dir=/data/cache/shb-crypt \
--vfs-cache-mode=full \
--vfs-cache-max-age=336h \
--vfs-cache-max-size=512G \
--vfs-read-chunk-size=16M \
--vfs-read-chunk-size-limit=256M \
--log-file /config/rclone/logs/shb-crypt.log \
--log-level NOTICE"
#--bwlimit 3M \
# 3M approxmimately equals 253 GB limit per day
# previously buffer 256 buffer 256 chunk size 128 read and limit off
devices:
- /dev/fuse
volumes:
- $DOCKERDIR/appdata/rclone:/config/rclone
- /media/shb-crypt:/data/shb-crypt:shared
- /media/hdd1/cache/shb-crypt:/data/cache/shb-crypt
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- /etc/fuse.conf:/etc/fuse.conf:ro
environment:
- TZ=$TZ
# MergerFS - A featureful union filesystem
mergerfs:
container_name: mergerfs
hostname: mergerfs
image: hotio/mergerfs:latest
restart: always
depends_on:
- rclone-drive
- rclone-crypt
user: $PUID:$PGID
command: "/data/media-local:/data/media-crypt:/data/media-drive=RO \
/data/media \
-o rw,\
use_ino,\
allow_other,\
func.getattr=newest,\
category.action=all,\
category.create=ff,\
statfs_ignore=nc,\
cache.files=auto-full,\
func.getattr=newest,\
dropcacheonclose=true,\
nonempty"
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
devices:
- /dev/fuse
environment:
- TZ=$TZ
volumes:
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- /etc/fuse.conf:/etc/fuse.conf:shared
#- $DATADIR:/data:slave # creates local-media and shb-media on host
- $DATADIR/local/media:/data/media-local:rshared
- /media/shb-drive/media:/data/media-drive:rshared
- /media/shb-crypt/media:/data/media-crypt:rshared
- $DATADIR/media:/data/media:rshared
# digikam - Photo Management
digikam:
image: ghcr.io/linuxserver/digikam
container_name: digikam
restart: unless-stopped
networks:
- t2_proxy
volumes:
- $DOCKERDIR/appdata/digikam:/config
- $DATADIR/photos:/data/photos
#ports:
# - 3000:3000
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.digikam-rtr.entrypoints=https"
- "traefik.http.routers.digikam-rtr.rule=Host(`digikam.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.digikam-rtr.middlewares=chain-oauth@file"
## HTTP Services
- "traefik.http.routers.digikam-rtr.service=digikam-svc"
- "traefik.http.services.digikam-svc.loadbalancer.server.port=3000"
# PlexTraktSync
# Create Trakt Application https://github.com/Taxel/PlexTraktSync
# Had to run this first before starting compose
# git clone -b plexmovieagent-fixed https://github.com/Taxel/PlexTraktSync.git /home/USER/docker/apps/
# sudo docker run -it --name ptsync -v /home/USER/docker/apps/PlexTraktSync:/usr/src/app -e TZ="America/New_York" --restart on-failure:2 twolaw/plextraktsync:latest
# change permissions of .env and .pytrakt.json to 600 and root:root
ptsync:
image: twolaw/plextraktsync:latest
container_name: ptsync
restart: unless-stopped
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
environment:
TZ: $TZ
volumes:
- $DOCKERDIR/apps/pts-mafixed:/usr/src/app # plexmovieagent-fixed branch
# Tiny Media Manager - Media and Metadata Management Tool
tinymm:
image: romancin/tinymediamanager:latest
container_name: tinymm
restart: "no"
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$TINYMM_PORT:5800"
volumes:
- $DOCKERDIR/appdata/tinymm:/config
- $DATADIR/media:/data/media
- $DATADIR/downloads:/data/downloads
environment:
USER_ID: $PUID
GROUP_ID: $PGID
TZ: $TZ
UMASK: 002
KEEP_APP_RUNNING: 1
CLEAN_TMP_DIR: 1
DISPLAY_WIDTH: 1600
DISPLAY_HEIGHT: 960
VNC_PASSWD: $TINYMM_VNC_PASSWD
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.tinymm-rtr.entrypoints=https"
- "traefik.http.routers.tinymm-rtr.rule=Host(`tmm.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.tinymm-rtr.middlewares=chain-oauth@file"
## HTTP Services
- "traefik.http.routers.tinymm-rtr.service=tinymm-svc"
- "traefik.http.services.tinymm-svc.loadbalancer.server.port=5800"
# SABnzbd - Binary newsgrabber (NZB downloader)
# Disable SABNnzbd's built-in HTTPS support for traefik proxy to work
# Needs trailing / if using PathPrefix
sabnzbd:
image: linuxserver/sabnzbd:latest
container_name: sabnzbd
restart: always
networks:
t2_proxy:
ipv4_address: 192.168.90.116
security_opt:
- no-new-privileges:true
# ports:
# - "$SABNZBD_PORT:8080"
volumes:
- $DOCKERDIR/appdata/sabnzbd:/config
- $DATADIR/downloads:/data/downloads
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
UMASK_SET: 002
labels:
- "traefik.enable=true"
## HTTP Routers Auth Bypass
- "traefik.http.routers.sabnzbd-rtr-bypass.entrypoints=https"
- "traefik.http.routers.sabnzbd-rtr-bypass.rule=Host(`sabnzbd.$DOMAINNAME0`) && Query(`apikey`, `$SABNZBD_API_KEY`)"
- "traefik.http.routers.sabnzbd-rtr-bypass.priority=100"
## HTTP Routers Auth
- "traefik.http.routers.sabnzbd-rtr.entrypoints=https"
- "traefik.http.routers.sabnzbd-rtr.rule=Host(`sabnzbd.$DOMAINNAME0`)"
- "traefik.http.routers.sabnzbd-rtr.priority=99"
## Middlewares
- "traefik.http.routers.sabnzbd-rtr-bypass.middlewares=chain-no-auth@file"
- "traefik.http.routers.sabnzbd-rtr.middlewares=chain-oauth@file"
## HTTP Services
- "traefik.http.routers.sabnzbd-rtr.service=sabnzbd-svc"
- "traefik.http.routers.sabnzbd-rtr-bypass.service=sabnzbd-svc"
- "traefik.http.services.sabnzbd-svc.loadbalancer.server.port=8080"
# CloudPlow - Rclone remote uploader/syncer
cloudplow:
image: sabrsorensen/alpine-cloudplow
container_name: cloudplow
restart: "no"
security_opt:
- no-new-privileges:true
volumes:
- $DOCKERDIR/appdata/cloudplow:/config/:rw
- $DOCKERDIR/appdata/rclone:/rclone_config/:rw
#- /home/<user>/google_drive_service_accounts:/service_accounts/:rw
- $DATADIR/media:/data/media:rw
- /etc/localtime:/etc/localtime:ro
environment:
- PUID=$PUID
- PGID=$PGID
- CLOUDPLOW_CONFIG=/config/config.json
- CLOUDPLOW_LOGFILE=/config/cloudplow.log
- CLOUDPLOW_LOGLEVEL=DEBUG
- CLOUDPLOW_CACHEFILE=/config/cache.db
# Ampache - Music Server
ampache:
container_name: ampache
image: ampache/ampache:nosql
restart: "no"
# profiles:
# - media
networks:
- t2_proxy
- default
security_opt:
- no-new-privileges:true
# ports:
# - "$AMPACHE_PORT:80"
volumes:
- $DOCKERDIR/appdata/ampache/config:/var/www/config
- $DOCKERDIR/appdata/ampache/log:/var/log/ampache
- $DATADIR/media/music:/media
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.ampache-rtr.entrypoints=https"
- "traefik.http.routers.ampache-rtr.rule=Host(`amp.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.ampache-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.ampache-rtr.service=ampache-svc"
- "traefik.http.services.ampache-svc.loadbalancer.server.port=80"
# Gonic - Music Server
gonic:
container_name: gonic
image: sentriz/gonic:latest
restart: "no"
# profiles:
# - media
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$GONIC_PORT:80"
volumes:
- $DOCKERDIR/appdata/gonic/data:/data
- $DOCKERDIR/appdata/gonic/podcasts:/podcasts
- $DATADIR/transcode/gonic:/cache
- $DATADIR/media/music:/music:ro
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.gonic-rtr.entrypoints=https"
- "traefik.http.routers.gonic-rtr.rule=Host(`gonic.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.gonic-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.gonic-rtr.service=gonic-svc"
- "traefik.http.services.gonic-svc.loadbalancer.server.port=80"
# AirSonic - Music Server
airsonic:
container_name: airsonic
image: linuxserver/airsonic:latest
restart: "no"
# profiles:
# - media
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$AIRSONIC_PORT:4040"
volumes:
- $DOCKERDIR/appdata/airsonic/podcasts:/podcasts
- $DOCKERDIR/appdata/airsonic/playlists:/playlists
- $DOCKERDIR/appdata/airsonic/config:/config
- $DATADIR/media/music:/data/media/music
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- PUID=$PUID
- PGID=$PGID
- JAVA_OPTS=-Dserver.use-forward-headers=true
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.airsonic-rtr.entrypoints=https"
- "traefik.http.routers.airsonic-rtr.rule=Host(`proxair.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.airsonic-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.airsonic-rtr.service=airsonic-svc"
- "traefik.http.services.airsonic-svc.loadbalancer.server.port=4040"
# MusicBrainz - Music Library Tagging and Management
musicbrainz:
image: ghcr.io/linuxserver/musicbrainz
container_name: musicbrainz
restart: "no"
# profiles:
# - media
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$MUSICBRAINZ_PORT:5000"
volumes:
- $DOCKERDIR/appdata/musicbrainz/config:/config
- $DATADIR/temp/docker/appdata/musicbrainz/data:/data
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
FILE__BRAINZCODE: /run/secrets/brainzcode
WEBADDRESS: $SERVER_IP
#NPROC: <parameter> #optional
secrets:
- brainzcode
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.musicbrainz-rtr.entrypoints=https"
- "traefik.http.routers.musicbrainz-rtr.rule=Host(`brainz.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.musicbrainz-rtr.middlewares=chain-oauth@file"
## HTTP Services
- "traefik.http.routers.musicbrainz-rtr.service=musicbrainz-svc"
- "traefik.http.services.musicbrainz-svc.loadbalancer.server.port=5000"
# Unmanic - Library Optimizer
unmanic:
image: josh5/unmanic:latest
container_name: unmanic
restart: "no"
# profiles:
# - media
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# ports:
# - "$UNMANIC_PORT:8888"
volumes:
- $DATADIR/media/videos:/library
- $DOCKERDIR/appdata/unmanic:/config
- $DATADIR/temp/transcode/unmanic:/tmp/unmanic
environment:
PUID: $PUID
PGID: $PGID
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.unmanic-rtr.entrypoints=https"
- "traefik.http.routers.unmanic-rtr.rule=Host(`manic.$DOMAINNAME0`)"
## Middlewares
- "traefik.http.routers.unmanic-rtr.middlewares=chain-oauth@file"
## HTTP Services
- "traefik.http.routers.unmanic-rtr.service=unmanic-svc"
- "traefik.http.services.unmanic-svc.loadbalancer.server.port=8888"
# Home Assistant Core - Home Automation
# Added temporarily since HASS.io (Home Assistant Supervised) on Docker has been deprecated.
homeassistant:
container_name: hass-core
restart: unless-stopped
image: homeassistant/home-assistant:2021.1.5
network_mode: host
# networks:
# - t2_proxy
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
- /dev/ttyUSB1:/dev/ttyUSB1
- /dev/ttyACM0:/dev/ttyACM0
privileged: true
volumes:
- $USERDIR/docker/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
#- /media/ssd/motioneye:/media/motioneye
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TZ
labels:
## Exclude From Watchtower
- "com.centurylinklabs.watchtower.enable=false"
# Home Assistant Core - Home Automation
# If you want Home Assistant, use the one above. This is was old setup. I am still migrating things from this one to Home Assistant Core Above.