-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml.sample
More file actions
1273 lines (1272 loc) · 41.9 KB
/
docker-compose.yml.sample
File metadata and controls
1273 lines (1272 loc) · 41.9 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
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
#version: "3.8"
x-base-default: &base-default
logging:
driver: local
options:
max-file: ${DOCKERLOGGING_MAXFILE}
max-size: ${DOCKERLOGGING_MAXSIZE}
restart: unless-stopped
x-base-media: &base-media
<<: *base-default
networks:
- media
x-base-misc: &base-misc
<<: *base-default
networks:
- misc
x-base-pullio: &pullio
org.hotio.pullio.notify: true
org.hotio.pullio.update: true
org.hotio.pullio.generic.webhook: ${PULLIO_GENERIC_WEBHOOK}
x-base-env: &env
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
UMASK: 002
services:
authelia:
<<: *base-misc
container_name: authelia
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
environment:
TZ: ${TZ}
hostname: authelia.internal
image: authelia/authelia:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/ZJ17rqR/59122411-s-200-v-4.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/authelia/authelia/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/ZJ17rqR/59122411-s-200-v-4.png"
volumes:
- ${CONF_PATH}/authelia:/config
autobrr:
<<: *base-media
container_name: autobrr
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
hostname: autobrr.internal
image: ghcr.io/autobrr/autobrr:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Q9C23Cn/index.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/autobrr/autobrr/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/Q9C23Cn/index.png"
#ports:
#- 8998:8989
volumes:
- ${CONF_PATH}/autobrr:/config
- ${CONF_PATH}/autobrr/definitions:/definitions
barassistant:
<<: *base-misc
container_name: barassistant
depends_on:
- barassistant-meilisearch
- redis
environment:
APP_URL: https://bar.${DOMAIN}/bar
LOG_CHANNEL: stderr
MEILISEARCH_KEY: ${MEILI_MASTER_KEY}
MEILISEARCH_HOST: http://barassistant-meilisearch:7700
REDIS_HOST: redis
CACHE_DRIVER: redis
SESSION_DRIVER: redis
ALLOW_REGISTRATION: true
image: barassistant/server:v4
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/3rTrKtZ/bar-assistant.jpg"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/karlomikus/bar-assistant/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/3rTrKtZ/bar-assistant.jpg"
volumes:
- ${CONF_PATH}/barassistant:/var/www/cocktails/storage/bar-assistant
barassistant-meilisearch:
<<: *base-misc
container_name: barassistant-meilisearch
environment:
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
MEILI_ENV: production
image: getmeili/meilisearch:v1.9
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/qpnDpxG/meilisearch.png"
org.hotio.pullio.author.url: "{\"link\": \"https://hub.docker.com/r/getmeili/meilisearch/tags\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/qpnDpxG/meilisearch.png"
volumes:
- ${CONF_PATH}/barassistant/meili:/meili_data
barassistant-saltrim:
<<: *base-misc
container_name: barassistant-saltrim
depends_on:
- barassistant
environment:
API_URL: https://bar.${DOMAIN}/bar
MEILISEARCH_URL: https://bar.${DOMAIN}/search
BAR_NAME: "My House"
DESCRIPTION: "It's 5:00 somewhere!!"
image: barassistant/salt-rim:v3
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/3rTrKtZ/bar-assistant.jpg"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/karlomikus/vue-salt-rim/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/3rTrKtZ/bar-assistant.jpg"
bazarr:
<<: *base-media
container_name: bazarr
environment:
<<: *env
hostname: bazarr.internal
image: ghcr.io/hotio/bazarr:nightly
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/6gbNTWG/bazarr.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/morpheus65535/bazarr/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/6gbNTWG/bazarr.png"
volumes:
- ${CONF_PATH}/bazarr:/config
- ${DATA_PATH}/movies/media:/data/movies/media
- ${DATA_PATH}/tv/media:/data/tv/media
beszel-agent:
<<: *base-default
cap_add:
- SYS_RAWIO
- SYS_ADMIN
container_name: beszel-agent
depends_on:
wireguard:
condition: service_healthy
restart: true
dockerproxy:
condition: service_started
devices:
- /dev/sda:/dev/sda
- /dev/sdb:/dev/sdb
- /dev/sdc:/dev/sdc
- /dev/sdd:/dev/sdd
- /dev/sde:/dev/sde
- /dev/sdf:/dev/sdf
- /dev/sdg:/dev/sdg
- /dev/sdh:/dev/sdh
- /dev/sdi:/dev/sdi
- /dev/sdj:/dev/sdj
- /dev/sdk:/dev/sdk
- /dev/sdl:/dev/sdl
- /dev/sdm:/dev/sdm
- /dev/sdn:/dev/sdn
- /dev/sdo:/dev/sdo
- /dev/sdp:/dev/sdp
- /dev/sdq:/dev/sdq
- /dev/sdr:/dev/sdr
- /dev/sds:/dev/sds
- /dev/sdt:/dev/sdt
- /dev/sdu:/dev/sdu
- /dev/sdv:/dev/sdv
- /dev/sdw:/dev/sdw
- /dev/sdx:/dev/sdx
- /dev/sdy:/dev/sdy
- /dev/sdz:/dev/sdz
- /dev/nvme0n1:/dev/nvme0n1
- /dev/nvme1n1:/dev/nvme2n1
- /dev/nvme2n1:/dev/nvme3n1
environment:
<<: *env
DOCKER_HOST: "tcp://dockerproxy:2375"
PORT: 45876
KEY: ${BESZEL_AGENT}
#hostname: beszel-agent.internal
image: henrygd/beszel-agent:alpine
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/6gbNTWG/bazarr.png"
org.hotio.pullio.author.url: "https://github.com/henrygd/beszel/releases"
net.unraid.docker.icon: "https://i.ibb.co/m5N8G4nG/Beszel.png"
network_mode: service:wireguard
#volumes:
#- /var/run/docker.sock:/var/run/docker.sock
beszel:
<<: *base-default
container_name: beszel
depends_on:
wireguard:
condition: service_healthy
restart: true
#extra_hosts:
#- host.docker.internal:host-gateway
#hostname: beszel.internal
image: henrygd/beszel:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/6gbNTWG/bazarr.png"
org.hotio.pullio.author.url: "https://github.com/henrygd/beszel/releases"
net.unraid.docker.icon: "https://i.ibb.co/m5N8G4nG/Beszel.png"
network_mode: service:wireguard
#ports:
#- 8090:8090
volumes:
- ${CONF_PATH}/beszel:/beszel_data
calibre:
<<: *base-media
container_name: calibre
hostname: calibre.internal
environment:
<<: *env
image: lscr.io/linuxserver/calibre:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/vxtLww6/calibreweb.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/kovidgoyal/calibre/blob/master/Changelog.txt\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/vxtLww6/calibreweb.png"
ports:
- 8081:8081
security_opt:
- seccomp:unconfined
volumes:
- ${CONF_PATH}/calibre:/config
- ${DATA_PATH}/misc/books/media:/data/misc/books/media
container-monitor:
<<: *base-misc
container_name: container-monitor
depends_on:
- dockerproxy
hostname: container-monitor.internal
environment:
DOCKER_API_VERSION: 1.41
DOCKER_HOST: "tcp://dockerproxy:2375"
CONTAINERMON_CHECK_STOPPED: false
CONTAINERMON_NOTIFICATION_URL: "discord://webhook"
image: ghcr.io/rafhaanshah/container-mon:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/K0bMT9W/docker-healthcheck.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/RafhaanShah/Container-Mon/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/K0bMT9W/docker-healthcheck.png"
user: ${PUID}:${PGID}
#volumes:
#- /var/run/docker.sock:/var/run/docker.sock
dockerproxy:
<<: *base-misc
container_name: dockerproxy
environment:
<<: *env
POST: 0
CONTAINERS: 1
INFO: 1
hostname: dockerproxy.internal
image: lscr.io/linuxserver/socket-proxy:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/WnBdBh0/docker-sock.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/linuxserver/docker-socket-proxy/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/WnBdBh0/docker-sock.png"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
dozzle:
<<: *base-default
container_name: dozzle
depends_on:
wireguard:
condition: service_healthy
restart: true
dockerproxy:
condition: service_started
#hostname: dozzle.internal
environment:
<<: *env
DOCKER_HOST: "tcp://dockerproxy:2375"
DOZZLE_HOSTNAME: unraid
DOZZLE_REMOTE_AGENT: 192.168.30.3:7007,10.0.20.1:7007
#DOZZLE_REMOTE_HOST: "tcp://10.0.20.2:2375"
image: amir20/dozzle:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/fxHzwwS/dozzle.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/amir20/dozzle/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/fxHzwwS/dozzle.png"
network_mode: service:wireguard
#volumes:
#- /var/run/docker.sock:/var/run/docker.sock
fail2ban:
<<: *base-default
cap_add:
- NET_ADMIN
- NET_RAW
container_name: fail2ban
environment:
<<: *env
DISC_HOOK: ${DISC_HOOK}
DISC_ME: ${DISC_ME}
DISC_API: ${DISC_API}
VERBOSITY: -vv
hostname: fail2ban.internal
image: lscr.io/linuxserver/fail2ban:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/SVn2mCj/fail2ban.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/linuxserver/docker-fail2ban/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/SVn2mCj/fail2ban.png"
network_mode: host
volumes:
- ${CONF_PATH}/fail2ban:/config
- ${CONF_PATH}/fail2ban/scripts:/custom-cont-init.d
- ${CONF_PATH}/authelia:/remotelogs/authelia:ro
- ${CONF_PATH}/immich/log/nginx:/remotelogs/immich:ro
- ${CONF_PATH}/jellyseerr/logs:/remotelogs/jellyseerr:ro
- ${CONF_PATH}/swag/geoip2db:/config/geoip2db
- ${CONF_PATH}/swag/log/nginx:/remotelogs/nginx:ro
- ${CONF_PATH}/swag/nginx/blocklist.conf:/config/fail2ban/blocklist.conf:z
- ${CONF_PATH}/vaultwarden:/remotelogs/vaultwarden:ro
- ${CONF_PATH}/webtop/logs/nginx:/remotelogs/webtop:ro
- /var/log:/remotelogs/unraid:ro
immich-server:
<<: *base-misc
container_name: immich_server
depends_on:
- redis
- immich-postgres
devices:
- /dev/dri/card1:/dev/dri/card1
- /dev/dri/renderD128:/dev/dri/renderD128
environment:
<<: *env
DB_PASSWORD: ${POSTGRES_PASSWORD}
DB_USER: ${POSTGRES_USER}
REDIS_HOSTNAME: redis
REDIS_PORT: 6379
DB_HOSTNAME: immich-postgres
MACHINE_LEARNING_WORKERS: 2
MACHINE_LEARNING_WORKER_TIMEOUT: 120
DB_DATABASE_NAME: immich
healthcheck:
disable: false
hostname: immich-server.internal
image: ghcr.io/immich-app/immich-server:release
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Rzdj77F/immich.png"
net.unraid.docker.icon: "https://i.ibb.co/Rzdj77F/immich.png"
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
#ports:
#- 2283:2283
restart: unless-stopped
volumes:
- ${DATA_PATH}/photos/immich:/usr/src/app/upload
- ${CONF_PATH}/immich/server/thumbs:/usr/src/app/upload/thumbs
- /etc/localtime:/etc/localtime:ro
immich-machine-learning:
<<: *base-misc
container_name: immich_machine_learning
device_cgroup_rules:
- 'c 189:* rmw'
devices:
- /dev/dri/card1:/dev/dri/card1
- /dev/dri/renderD128:/dev/dri/renderD128
hostname: immich-machine-learning.internal
image: ghcr.io/immich-app/immich-machine-learning:release-openvino
# extends:
# file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference
#ports:
#- 3003:3003
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Rzdj77F/immich.png"
net.unraid.docker.icon: "https://i.ibb.co/Rzdj77F/immich.png"
volumes:
- ${CONF_PATH}/immich/learning:/cache
- /dev/bus/usb:/dev/bus/usb
restart: unless-stopped
healthcheck:
disable: false
immich-postgres:
<<: *base-misc
container_name: immich_postgres
hostname: immich-postgres.internal
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.3.0
environment:
<<: *env
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: immich
POSTGRES_INITDB_ARGS: '--data-checksums'
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Rzdj77F/immich.png"
net.unraid.docker.icon: "https://i.ibb.co/Rzdj77F/immich.png"
volumes:
- ${CONF_PATH}/immich/postgres:/var/lib/postgresql/data
#ports:
#- 5432:5432
jellyseerr:
<<: *base-media
container_name: jellyseerr
environment:
<<: *env
DB_TYPE: postgres
DB_HOST: ${POSTGRES_HOST}
DB_USER: ${POSTGRES_USER}
DB_PASS: ${POSTGRES_PASSWORD}
hostname: jellyseerr.internal
image: ghcr.io/hotio/seerr:latest
labels:
<<: *pullio
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/fallenbagel/jellyseerr/releases\", \"label\": \"changelog\"}"
org.hotio.pullio.author.avatar: "https://i.ibb.co/qMqc4MtT/Jellyseerr.png"
net.unraid.docker.icon: "https://i.ibb.co/qMqc4MtT/Jellyseerr.png"
#ports:
#- "5055:5055"
volumes:
- ${CONF_PATH}/jellyseerr:/config
- ${DATA_PATH}/movies/media:/data/movies/media
- ${DATA_PATH}/tv/media:/data/tv/media
lidarr:
<<: *base-media
container_name: lidarr
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
hostname: lidarr.internal
image: ghcr.io/hotio/lidarr:nightly
#image: ghcr.io/hotio/lidarr:pr-plugins-2.14.1.4735
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/nQrWPpB/lidarr.png"
net.unraid.docker.icon: "https://i.ibb.co/nQrWPpB/lidarr.png"
#ports:
#- 8686:8686
volumes:
- ${CONF_PATH}/lidarr:/config
- ${DATA_PATH}/misc:/data/misc
minecraft:
<<: *base-default
container_name: minecraft
environment:
EULA: TRUE
VERSION: LATEST
UID: ${PUID}
GID: ${PGID}
PACKAGE_BACKUP_KEEP: 2
SERVER_NAME: "Cool Dude Server"
GAMEMODE: creative
MAX_PLAYERS: 8
ONLINE_MODE: true
LEVEL_TYPE: default
ENFORCE_WHITELIST: true
WHITE_LIST_USERS: ""
SERVER_PORT: 19132
OPS: ""
hostname: minecraft.internal
image: itzg/minecraft-bedrock-server
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/5WKp9FS/minecraft.jpg"
net.unraid.docker.icon: "https://i.ibb.co/5WKp9FS/minecraft.jpg"
network_mode: host
ports:
- 127.0.0.1:19132:19132/udp
restart: unless-stopped
volumes:
- ${CONF_PATH}/minecraft:/data
netronome:
<<: *base-misc
container_name: netronome
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
NETRONOME__DB_TYPE: ${POSTGRES_DB}
NETRONOME__DB_HOST: ${POSTGRES_HOST}
NETRONOME__DB_PORT: 5432
NETRONOME__DB_USER: ${POSTGRES_USER}
NETRONOME__DB_PASSWORD: ${POSTGRES_PASSWORD}
NETRONOME__DB_NAME: netronome
NETRONOME__DB_SSLMODE: disable
hostname: netronome.internal
image: ghcr.io/autobrr/netronome:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/DgfVT4cr/netronome.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/autobrr/netronome/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/DgfVT4cr/netronome.png"
#ports:
#- "7575:7575"
volumes:
- ${CONF_PATH}/netronome:/data/.config/netronome
notifiarr:
<<: *base-media
container_name: notifiarr
environment:
TZ: ${TZ}
hostname: davo1624
image: ghcr.io/notifiarr/notifiarr:unstable
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://notifiarr.com/images/logo_100x100.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/Notifiarr/notifiarr/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://notifiarr.com/images/logo_100x100.png"
ports:
- 5454:5454
privileged: true
volumes:
- ${CONF_PATH}/notifiarr:/config
- ${CONF_PATH}/overseerr/logs:/remotelogs/overseerr:ro
- ${CONF_PATH}/radarr/logs:/remotelogs/radarr:ro
- ${CONF_PATH}/radarr-4k/logs:/remotelogs/radarr-4k:ro
- ${CONF_PATH}/sonarr/logs:/remotelogs/sonarr:ro
- ${CONF_PATH}/lidarr/logs:/remotelogs/lidarr:ro
- ${CONF_PATH}/readarr/logs:/remotelogs/readarr:ro
- ${CONF_PATH}/prowlarr/logs:/remotelogs/prowlarr:ro
- /var/run/utmp:/var/run/utmp
- /mnt/user:/storage/1
orpheusbetter:
<<: *base-misc
container_name: orpheusbetter
environment:
<<: *env
image: ghcr.io/quorn23/orpheusbetter-docker:master
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/kyqJMwy/orpheus.jpg"
net.unraid.docker.icon: "https://i.ibb.co/kyqJMwy/orpheus.jpg"
restart: no
volumes:
- ${CONF_PATH}/orpheusbetter:/config/.orpheusbetter
- ${DATA_PATH}/misc/music/torrents/.uploads:/data/misc/music/torrents/.uploads
pgbackups:
<<: *base-media
container_name: pgbackups
depends_on:
postgres:
condition: service_healthy
environment:
BACKUP_DIR: /backups
POSTGRES_HOST: ${POSTGRES_HOST}
POSTGRES_DB: "authelia autobrr lidarr-main netronome prowlarr-main qui radarr-main radarr-4k-main readarr-main seerr sonarr-main spoolman vaultwarden"
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
SCHEDULE: "@daily"
BACKUP_KEEP_DAYS: 7
BACKUP_KEEP_WEEKS: 4
BACKUP_KEEP_MONTHS: 6
HEALTHCHECK_PORT: 8080
hostname: pgbackups.internal
image: prodrigestivill/postgres-backup-local
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/XSmQBNC/database-postgres.jpg"
net.unraid.docker.icon: "https://i.ibb.co/XSmQBNC/database-postgres.jpg"
user: postgres:postgres
volumes:
- /mnt/backups/appdata/postgres:/backups
#- ${CONF_PATH}/pgbackups:/var/lib/postgresql/data
plex:
<<: *base-default
container_name: plex
devices:
- /dev/dri:/dev/dri
environment:
<<: *env
#PLEX_CLAIM_TOKEN: ${PLEX_CLAIM_TOKEN}
PLEX_NO_AUTH_NETWORKS: ${ALLOWED_NETWORKS}
PLEX_ADVERTISE_URL: ${ADVERTISE_IP}
PLEX_BETA_INSTALL: true
PLEX_PURGE_CODECS: true
PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR: "/app/config"
DEBUG: no
#- NVIDIA_VISIBLE_DEVICES=GPU-cb6c8b8e-2662-a4d2-6afd-a37a5bf5e0be
#- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
hostname: plex.internal
image: ghcr.io/hotio/plex:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/n8gP7gh/plex.png"
org.hotio.pullio.author.url: "{\"link\": \"https://https://github.com/linuxserver/docker-plex/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/n8gP7gh/plex.png"
network_mode: host
#ports:
#- 32400:32400
#- 1900:1900/udp #DLNA
#- 32410:32410/udp #GDM network
#- 32412-32414:32412-32414/udp #GDM network
#- 32469:32469 #DLNA
#runtime: nvidia
volumes:
- ${CONF_PATH}/plex:/config
- ${DATA_PATH}/movies/media:/data/movies/media
- ${DATA_PATH}/tv/media:/data/tv/media
- ${DATA_PATH}/misc/music/media:/data/misc/music/media
- ${DATA_PATH}/misc/music/media-unsorted:/data/misc/music/media-unsorted
- /tmp/plex:/transcode
plex-cleanup:
<<: *base-media
container_name: pcu
environment:
TZ: ${TZ}
PLEX_PATH: /plex-appdata
MODE: remove
PLEX_URL: "http://192.168.20.6:32400"
PLEX_TOKEN: ${PLEX_TOKEN}
PHOTO_TRANSCODER: true
EMPTY_TRASH: true
CLEAN_BUNDLES: true
OPTIMIZE_DB: true
DISCORD: "https://discord.com/api/webhooks/webhook"
SLEEP: 30
SCHEDULE: "02:45|daily"
hostname: plex-cleanup.internal
image: kometateam/imagemaid
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/VJp47kj/plex-image-cleanup.jpg"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/meisnate12/Plex-Image-Cleanup/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/VJp47kj/plex-image-cleanup.jpg"
user: ${PUID}:${PGID}
volumes:
- ${CONF_PATH}/pcu:/config
- ${CONF_PATH}/plex:/plex-appdata
plex-meta-manager:
<<: *base-media
container_name: pmm
environment:
PMM_TIME: "07:00"
PMM_DIVIDER: "="
PMM_WIDTH: 200
TZ: ${TZ}
hostname: plex-meta-manager.internal
image: kometateam/kometa:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/VDnX2MT/plex-meta-manager.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/meisnate12/Plex-Meta-Manager/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/VDnX2MT/plex-meta-manager.png"
ulimits:
nofile:
soft: 1048576
hard: 1048576
user: ${PUID}:${PGID}
volumes:
- ${CONF_PATH}/pmm:/config
portainer:
<<: *base-misc
container_name: portainer
environment:
VIRTUAL_PORT: 9000
VIRTUAL_HOST: portainer.${DOMAIN}
PATH: "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
hostname: portainer.internal
image: portainer/portainer-ce:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/wNvTzYV/portainer.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/portainer/portainer/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/wNvTzYV/portainer.png"
mac_address: "02:42:ac:11:00:06"
#ports:
#- 9443:9443
#- 9000:9000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${CONF_PATH}/portainer:/data
postgres:
<<: *base-default
container_name: postgres
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
TZ: "GMT-4"
PGTZ: "GMT-4"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 3
hostname: postgres.internal
image: pgautoupgrade/pgautoupgrade:latest
labels:
#<<: *pullio
#org.hotio.pullio.update: false #prevent auto-update
#org.hotio.pullio.author.avatar: "https://i.ibb.co/NCgNfC8/pgadmin.png"
#org.hotio.pullio.author.url: "{\"link\": \"https://www.postgresql.org/docs/release/\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/NCgNfC8/pgadmin.png"
networks:
- misc
- media
restart: unless-stopped
shm_size: 1g
#user: ${PUID}:${PGID}
volumes:
- ${CONF_PATH}/postgres:/var/lib/postgresql/data
powershell:
<<: *base-default
container_name: powershell
environment:
<<: *env
image: mcr.microsoft.com/powershell:latest
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/KVW35hR/Power-Shell-5-0-icon.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/RafhaanShah/Container-Mon/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/KVW35hR/Power-Shell-5-0-icon.png"
networks:
- media
restart: no
volumes:
- ${CONF_PATH}/scripts/upgradinatorr:/scripts
command: "pwsh /scripts/upgradinatorr.ps1 -apps Radarr4k -verbose"
prowlarr:
<<: *base-media
container_name: prowlarr
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
image: ghcr.io/hotio/prowlarr:nightly
hostname: prowlarr.internal
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://notifiarr.com/images/logo/prowlarr.png"
net.unraid.docker.icon: "https://notifiarr.com/images/logo/prowlarr.png"
volumes:
- ${CONF_PATH}/prowlarr:/config
qbit-movies:
<<: *base-default
container_name: qbit-movies
depends_on:
vpn-client:
condition: service_healthy
environment:
<<: *env
LIBTORRENT: "v2"
VPN_ENABLED: false
WEBUI_PORTS: "8083/tcp"
#hostname: qbit-movies.internal
image: ghcr.io/hotio/qbittorrent:release-5.1.2
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
net.unraid.docker.icon: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
network_mode: container:vpn-client
volumes:
- ${CONF_PATH}/qbit-movies:/config
- ${DATA_PATH}/movies/torrents:/data/movies/torrents
qbit-misc:
<<: *base-default
container_name: qbit-misc
depends_on:
vpn-client:
condition: service_healthy
environment:
<<: *env
LIBTORRENT: "v2"
VPN_ENABLED: false
WEBUI_PORTS: "8084/tcp"
#hostname: qbit-misc.internal
image: ghcr.io/hotio/qbittorrent:release-5.1.2
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
net.unraid.docker.icon: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
network_mode: container:vpn-client
volumes:
- ${CONF_PATH}/qbit-misc:/config
- ${DATA_PATH}/misc/torrents:/data/misc/torrents
qbit-tv:
<<: *base-default
container_name: qbit-tv
depends_on:
vpn-client:
condition: service_healthy
environment:
<<: *env
LIBTORRENT: "v2"
VPN_ENABLED: false
WEBUI_PORTS: "8082/tcp"
#hostname: qbit-tv.internal
image: ghcr.io/hotio/qbittorrent:release-5.1.2
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
net.unraid.docker.icon: "https://i.ibb.co/Tq7Tcz8/qbittorrent.png"
network_mode: container:vpn-client
volumes:
- ${CONF_PATH}/qbit-tv:/config
- ${DATA_PATH}/tv/torrents:/data/tv/torrents
qui:
<<: *base-media
container_name: qui
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
QUI__DATABASE_ENGINE: postgres
QUI__DATABASE_DSN: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/qui?sslmode=disable
hostname: qui.internal
#image: ghcr.io/autobrr/qui:pr-1581
image: ghcr.io/autobrr/qui:develop
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/dJLqmT4z/qui.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/autobrr/qui/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/dJLqmT4z/qui.png"
#ports:
#8080:8080
user: ${PUID}:${PGID}
volumes:
- ${CONF_PATH}/qui:/config
- ${DATA_PATH}/misc/torrents:/data/misc/torrents
- ${DATA_PATH}/movies:/data/movies
- ${DATA_PATH}/tv:/data/tv
radarr:
<<: *base-media
container_name: radarr
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
hostname: radarr.internal
image: ghcr.io/hotio/radarr:nightly
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/ZNZFvGr/radarr.png"
net.unraid.docker.icon: "https://i.ibb.co/ZNZFvGr/radarr.png"
#ports:
#- 7878:7878
volumes:
- ${CONF_PATH}/radarr:/config
- ${DATA_PATH}/movies:/data/movies
radarr-4k:
<<: *base-media
container_name: radarr-4k
depends_on:
postgres:
condition: service_healthy
environment:
<<: *env
hostname: radarr-4k.internal
image: ghcr.io/hotio/radarr:nightly
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/ZNZFvGr/radarr.png"
net.unraid.docker.icon: "https://i.ibb.co/ZNZFvGr/radarr.png"
#ports:
#- 7879:7878
volumes:
- ${CONF_PATH}/radarr-4k:/config
- ${CONF_PATH}/radarr-4k/99-install-dependencies.sh:/etc/cont-init.d/99-install-dependencies.sh
- ${DATA_PATH}/movies:/data/movies
readarr:
<<: *base-media
container_name: readarr
depends_on:
- calibre
- postgres
environment:
<<: *env
hostname: readarr.internal
image: ghcr.io/hotio/readarr:nightly
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/4TYxfXr/readarr.png"
net.unraid.docker.icon: "https://i.ibb.co/4TYxfXr/readarr.png"
volumes:
- ${CONF_PATH}/readarr:/config
- ${DATA_PATH}/misc:/data/misc
redis:
<<: *base-misc
container_name: redis
depends_on:
postgres:
condition: service_healthy
healthcheck:
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
interval: 1s
timeout: 3s
retries: 5
hostname: redis.internal
image: redis:alpine
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/fHGHz6L/redis.png"
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/redis/redis/releases\", \"label\": \"changelog\"}"
net.unraid.docker.icon: "https://i.ibb.co/fHGHz6L/redis.png"
volumes:
- ${CONF_PATH}/redis:/data
restic:
<<: *base-misc
container_name: restic
environment:
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
BACKUP_CRON: 45 4 */2 * *
RESTIC_REPOSITORY: ${RESTIC_REPOSITORY}
RESTIC_PASSWORD: ${RESTIC_PASSWORD}
RESTIC_TAG: appdata
RESTIC_FORGET_ARGS: --prune --keep-last 1
TZ: ${TZ}
hostname: restic.internal
image: ghcr.io/lobaro/restic-backup-docker:latest
labels:
<<: *pullio
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/lobaro/restic-backup-docker/releases\", \"label\": \"changelog\"}"
org.hotio.pullio.author.avatar: "https://i.ibb.co/52P4CMx/restic.jpg"
net.unraid.docker.icon: "https://i.ibb.co/52P4CMx/restic.jpg"
volumes:
- ${BACKUP_PATH}:/data
sabnzbd:
<<: *base-media
container_name: sabnzbd
environment:
<<: *env
hostname: sabnzbd.internal
image: ghcr.io/hotio/sabnzbd:testing
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/VJ3ZCFK/icon.png"
net.unraid.docker.icon: "https://i.ibb.co/VJ3ZCFK/icon.png"
#ports:
#- 9090:8080
volumes:
- ${CONF_PATH}/sabnzbd:/config
- /mnt/cache/data:/data
- /tmp/sabnzbd:/temp
seasonpackarr:
<<: *base-media
container_name: seasonpackarr
environment:
SEASONPACKARR_CONFIG_PATH: /config
image: ghcr.io/nuxencs/seasonpackarr
labels:
<<: *pullio
org.hotio.pullio.author.avatar: "https://i.ibb.co/GV9V7NY/seasonpackarr.png"
net.unraid.docker.icon: "https://i.ibb.co/GV9V7NY/seasonpackarr.png"
#ports:
#- 42069:42069
restart: unless-stopped
user: ${PUID}:${PGID}
volumes:
- ${CONF_PATH}/seasonpackarr:/config
- ${DATA_PATH}/tv/torrents:/data/tv/torrents
slskd:
<<: *base-default
container_name: slskd
depends_on:
vpn-client:
condition: service_healthy
environment:
<<: *env
SLSKD_DOWNLOADS_DIR: '/data/misc/music/soulseek'
SLSKD_INCOMPLETE_DIR: '/data/misc/music/soulseek/.incomplete'
SLSKD_SHARED_DIR: '/data/misc/music/media;/data/misc/music/media-unsorted'
SLSKD_UPLOAD_SLOTS: 3
SLSKD_SLSK_USERNAME: ${SLSK_USERNAME}
SLSKD_SLSK_PASSWORD: ${SLSK_PASSWORD}
SLSKD_SLSK_LISTEN_PORT: 50300
SLSKD_HTTP_PORT: 5030
SLSKD_NO_AUTH: true
SLSKD_REMOTE_CONFIGURATION: true
SLSKD_SLSK_NO_DNET: false
SLSKD_SLSK_DNET_NO_CHILDREN: false
SLSKD_SLSK_DNET_CHILDREN: 50
SLSKD_SLSK_DESCRIPTION: 'slskd https://github.com/slskd/slskd If you queue up more than a few albums at a time you will be banned'
SLSKD_DISK_LOGGER: false
SLSKD_SHARE_CACHE_STORAGE_MODE: 'memory'
SLSKD_SHARE_CACHE_WORKERS: 4
SLSKD_SHARE_CACHE_RETENTION: 2880
#hostname: slskd.internal
image: ghcr.io/hotio/slskd:latest
labels:
<<: *pullio
org.hotio.pullio.author.url: "{\"link\": \"https://github.com/slskd/slskd/releases\", \"label\": \"changelog\"}"
org.hotio.pullio.author.avatar: "https://i.ibb.co/HGzzQZ5/soulseek.png"
net.unraid.docker.icon: "https://i.ibb.co/HGzzQZ5/soulseek.png"
network_mode: container:vpn-client
volumes:
- ${CONF_PATH}/slskd:/config
- ${DATA_PATH}/misc/music:/data/misc/music
sonarr:
<<: *base-media