-
Notifications
You must be signed in to change notification settings - Fork 2
/
Moderation.json
1804 lines (1804 loc) · 77.8 KB
/
Moderation.json
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
{
"ffdfgdfg/npc": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"registry.phospher.com/brianmiller/doorway:latest": {
"Blacklist": true,
"ModeratorComment": "Unable to be pulled"
},
"registry.phospher.com/brianmiller/mbbsemu:latest": {
"Blacklist": true,
"ModeratorComment": "Unable to be pulled"
},
"lizardbyte/sunshine:latest": {
"Blacklist": true,
"ModeratorComment": "Default tag in template does not exist on dockerHub"
},
"r14f/allthemods10:v1.0.0": {
"Blacklist": true,
"ModeratorComment": "Unable to be downloaded from dockerHub"
},
"noah231515/receipt-wrangler:{{TAG}}": {
"RemoveFromCA": true
},
"azuracast/nowplaying:latest": {
"Blacklist": true,
"ModeratorComment": "Unable to be pulled from dockerHub"
},
"seafileltd/seafile-mc": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"https://raw.githubusercontent.com/unraid/unraid-tailscale/main/plugin/tailscale.plg": {
"LTOfficial": true,
"ExtraSearchTerms": "TailScale",
"ExtraPriority": true
},
"https://raw.githubusercontent.com/unraid/unraid-tailscale/preview/plugin/tailscale-preview.plg": {
"LTOfficial": true
},
"https://raw.githubusercontent.com/dkaser/unraid-tailscale/main/plugin/tailscale.plg": {
"HideFromCA": true
},
"https://raw.githubusercontent.com/dkaser/unraid-tailscale/preview/plugin/tailscale-preview.plg": {
"HideFromCA": true
},
"passivelemon/zoraxy-docker:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"athou/commafeed:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"mavrag/pihole-dot-doh:latest": {
"Deprecated": true,
"ModeratorComment": "Deprecated as no updates to container for 2+ years. Advised to switch to another pihole-dot-doh available within Apps which are still under active development. This template will be removed from Apps in the future."
},
"https://raw.githubusercontent.com/dmacias72/unRAID-cmdline/master/plugin/cmdline.plg": {
"RemoveFromCA": true,
"ModeratorComment": "Effectively already integrated into the OS. This plugin will shortly be removed from Apps"
},
"jshridha/rdiffweb": {
"Blacklist": true,
"ModeratorComment": "Unmaintained and unable to download from dockerHub due to docker image format v1/v2"
},
"mace/cloudflare-ddns": {
"Blacklist": true,
"ModeratorComment": "Unmaintained and unable to download from dockerHub due to docker image format v1/v2"
},
"sdesbure/alpine-netatmo-librato": {
"Blacklist": true,
"ModeratorComment": "Unmaintained and unable to download from dockerHub due to docker image format v1/v2"
},
"https://github.com/jbrodriguez/controlr/releases/latest/download/controlr.plg": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of ControlRD from same author"
},
"ghcr.io/plausible/community-edition:latest": {
"RemoveFromCA": true,
"Reasoning": "Security violation due to script in extra parameters. If/when this is reconfigured, then get rid of this entry"
},
"chvb/docker-apache-php": {
"Blacklist": true,
"ModeratorComment": "Can no longer be downloaded"
},
"chvb/docker-dvblink": {
"RemoveFromCA": true,
"ModeratorComment": "Appears to be completely unmaintained and abandoned"
},
"chvb/docker-kerio-connect": {
"RemoveFromCA": true,
"ModeratorComment": "Appears to be completely unmaintained and abandoned"
},
"chvb/onlyofficedocumentserver:latest": {
"RemoveFromCA": true,
"ModeratorComment": "Appears to be completely unmaintained and abandoned"
},
"chvb/docker-tvhproxy": {
"RemoveFromCA": true,
"ModeratorComment": "Appears to be completely unmaintained and abandoned"
},
"portainerci/portainer:2.1": {
"Blacklist": true,
"ModeratorComment": "Tag no longer exists on dockerHub"
},
"ghcr.io/chrisbenincasa/tunarr": {
"Blacklist": true,
"ModeratorComment": "Default tag (:latest) does not exist on dockerHub"
},
"jellyfin/jellyfin:latest": {
"Name": "Jellyfin"
},
"shadowpanther/neosvr-headless:latest": {
"Blacklist": true,
"ModeratorComment": "Tag / Repository no longer exists on dockerHub"
},
"ghcr.io/beccazero/prusa-connect-rtsp": {
"Blacklist": true,
"ModeratorComment": "Default latest tag does not exist"
},
"ghcr.io/ggerganov/llama.cpp": {
"RemoveFromCA": true,
"ModeratorComment": "Implied :latest (default tag) does not exist. Removed from CA"
},
"https://raw.github.com/bergware/dynamix/master/unRAIDv6/dynamix.cache.dirs.plg": {
"MaxVer": "6.11.999",
"VerMessage": "When running Unraid 6.12.x+, it is highly recommended to uninstall Cache Dirs / Folder Caching published by Bonienl, and reinstall the fork published by dlandon which operates far better under 6.12.x and is currently being maintained."
},
"ghcr.io/toeverything/affine-self-hosted:latest": {
"Blacklist": true,
"ModeratorComment": "Cannot be installed. Unauthorized for ghcr"
},
"dumplingmiku/sudhanplayz-discord-musicbot-master:latest": {
"ModeratorComment": "tag no longer exists on dockerHub",
"Blacklist": true
},
"sparklyballs/websync": {
"ModeratorComment": "This application is no longer functional.",
"Blacklist": true
},
"livebook/livebook": {
"Blacklist": true,
"ModeratorComment": "No longer exists on dockerHub"
},
"https://raw.githubusercontent.com/Steini1984/unRAID6-ZFS/master/unRAID6-ZFS.plg": {
"CAComment": "Expert Only: Not recommended for the casual user. You must ensure that an upgrade is available for this plugin if you upgrade the Unraid OS",
"MinVer": "6.1.4"
},
"https://raw.github.com/bergware/dynamix/master/unRAIDv6/dynamix.file.integrity.plg": {
"CAComment": "USING THIS PLUGIN ON DISKS FORMATTED IN REISERFS MAY LEAD TO SYSTEM INSTABILITY. IT IS ADVISED TO USE XFS"
},
"https://raw.githubusercontent.com/Squidly271/checksum/master/plugins/checksum.plg": {
"Deprecated": true,
"ModeratorComment": "Development has ceased on this plugin. No support will be given on issues. But, it is functional. Alternatives however would include Dynamix File Integrity Checker"
},
"gfjardim/crashplan-desktop": {
"ModeratorComment": "This docker app has been merged with the Crashplan application.",
"Blacklist": true
},
"rix1337/docker-copy": {
"ModeratorComment": "This application ceased to operate after May 1st, 2016",
"Blacklist": true,
"RemoveFromCA": true
},
"sparklyballs/headless-kodi-helix": {
"ModeratorComment": "As author now a member of linux, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/headless-kodi-isengard": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/photoshow": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/piwigo": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/pydio": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/readerself": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"smdion/docker-headphones": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"hurricane/docker-couchpotato": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"hurricane/docker-sonarr": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"hurricane/docker-sabnzbd": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"smdion/docker-htpcmanager": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"smdion/docker-beets": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"smdion/docker-polipo": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/serviio": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/znc": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"aptalca/docker-amazon-echo-ha-bridge": {
"ModeratorComment": "Container Deprecated in favor of a different one",
"Blacklist": true
},
"sparklyballs/couchtest": {
"ModeratorComment": "Presumably no harm will come from blacklisting this application",
"Blacklist": true
},
"sparklyballs/daapd-server": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"sparklyballs/musicbrainz": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"https://raw.githubusercontent.com/gfjardim/unRAID-plugins/master/plugins/unassigned.devices.plg": {
"ModeratorComment": "dlandon has taken over this project and your should be installing his version.",
"Blacklist": true
},
"jbrodriguez/unbalance": {
"ModeratorComment": "This docker app has now been deprecated in favour of the plugin version by the same author",
"Blacklist": true
},
"test/test": {
"Blacklist": true
},
"gfjardim/transmission": {
"ModeratorComment": "The author of this template is now recommending to install this application from a different repository",
"Blacklist": true
},
"https://raw.githubusercontent.com/gfjardim/unRAID-plugins/master/plugins/preclear.disk.beta.plg": {
"ModeratorComment": "This plugin is now set up to immediately uninstall itself, as it has now been deprecated in favour of the non-beta version. It will soon become blacklisted within Community Applications",
"Blacklist": true
},
"tobbenb/tvheadend-stable": {
"ModeratorComment": "Repository no longer available on dockerHub",
"Blacklist": true
},
"tobbenb/tvheadend-unstable": {
"ModeratorComment": "Repository no longer exists",
"Blacklist": true
},
"tobbenb/tvheadend": {
"ModeratorComment": "Repository no longer exists on dockerHub",
"Blacklist": true
},
"tobbenb/oscam": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version.",
"Blacklist": true
},
"linuxserver/kodi-headless": {
"CAComment": "Due to reasons beyond linuxserver's control, there are some issues with the Jarvis branch of this application which may cause it to not function correctly. See support thread for details",
"Deprecated": true
},
"aptalca/nginx-letsencrypt": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version See <a href=http://lime-technology.com/forum/index.php?topic=39413.msg521591#msg521591 target=_blank>THIS POST</a> for details",
"Blacklist": true
},
"ruippeixotog/google-musicmanager:dev": {
"ModeratorComment": "There are some challenges involved in using this particular application. Might be wise to install instead the version from rix1337",
"Deprecated": true
},
"spants/unraid-hole": {
"ModeratorComment": "Per the description of the container (DO NOT USE), this application has been blacklisted",
"Blacklist": true
},
"jshridha/openhab": {
"ModeratorComment": "This particular openHab container has been deprecated",
"Deprecated": true
},
"needo/couchpotato": {
"ModeratorComment": "The unRaid community generally recommends to install the CouchPotato application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/deluge": {
"ModeratorComment": "The unRaid community generally recommends to install the Deluge application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/mariadb": {
"ModeratorComment": "The unRaid community generally recommends to install the MariaDB application from linuxserver's repositories",
"Deprecated": true
},
"needo/nzbget": {
"ModeratorComment": "The unRaid community generally recommends to install the nzbGet application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/plex": {
"ModeratorComment": "The unRaid community generally recommends to install the Plex application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/sabnzbd": {
"ModeratorComment": "The unRaid community generally recommends to install the SabNZBd application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/sickbeard": {
"ModeratorComment": "The unRaid community generally recommends to install the SickBeard application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/sickrage": {
"ModeratorComment": "The unRaid community generally recommends to install the SickRage application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/nzbdrone": {
"ModeratorComment": "The unRaid community generally recommends to install the Sonarr application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"needo/plexwatch": {
"ModeratorComment": "The unRaid community generally recommends to install the PlexWatch application from either linuxserver's or binhex's repositories",
"Deprecated": true
},
"aptalca/zoneminder-1.29": {
"ModeratorComment": "This app is fully functional. But due to technical reasons, it is no longer being updated to later versions. See <a href=https://forums.lime-technology.com/topic/37735-support-aptalcas-docker-templates/?page=40#comment-550005 target=_blank>HERE</a>. This app has been deprecated in favour of one being maintained by dlandon <a href=https://forums.lime-technology.com/topic/56632-support-dlandon-zoneminder-130/ target=_blank>HERE</a>",
"Deprecated": true
},
"aptalca/docker-zoneminder": {
"Description": "ZoneMinder is the top Linux video camera security and surveillance solution. This container installs the older version 1.28",
"ModeratorComment": "This app is fully functional. But due to technical reasons, it is no longer being updated to later versions. See <a href=https://forums.lime-technology.com/topic/37735-support-aptalcas-docker-templates/?page=40#comment-550005 target=_blank>HERE</a> This app has been deprecated in favour of one being maintained by dlandon <a href=https://forums.lime-technology.com/topic/56632-support-dlandon-zoneminder-130/ target=_blank>HERE</a>",
"Deprecated": true
},
"ninthwalker/plexreport": {
"ModeratorComment": "This app has been deprecated in favour of 'Now Showing' from ninthwalker",
"Deprecated": true
},
"gfjardim/logitechmediaserver": {
"ModeratorComment": "Although this app is presumably still functional, a more up-to-date version in dlandon's repository is available",
"Deprecated": true
},
"ironicbadger/booksonic": {
"ModeratorComment": "Repository no longer available on dockerHub",
"Blacklist": true
},
"sparklyballs/yify-pop": {
"ModeratorComment": "Application is non functional",
"Blacklist": true
},
"lsiodev/owncloud": {
"ModeratorComment": "This application has been taken over by dlandon, and it is advised to install his version instead",
"Blacklist": true
},
"aptalca/docker-plexrequests": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version.",
"Blacklist": true
},
"https://raw.githubusercontent.com/Squidly271/UsefulLinks/master/useful_links.plg": {
"Deprecated": true,
"ModeratorComment": "No longer being maintained, and very out of date"
},
"sparklyballs/beardrage": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"aptalca/docker-duckdns": {
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version",
"Blacklist": true
},
"tobbenb/webgrabplusplus": {
"ModeratorComment": "No longer available on dockerHub",
"Blacklist": true
},
"gfjardim/crashplan": {
"ModeratorComment": "Due to changes made by Code42, CrashPlan Home version no longer functions as of Oct 22. If you wish to continue using CrashPlan, you will have to switch to the CrashPlan Pro application.",
"Blacklist": true
},
"https://raw.githubusercontent.com/Squidly271/repo.update/master/plugins/community.repositories.plg": {
"ModeratorComment": "Long ago replaced by <a href=https://forums.lime-technology.com/topic/38582-plug-in-community-applications/ target=_blank>Community Applications</a>. CR is no longer functional and may have adverse effects on any running server, and should be uninstalled immediately and replaced with Community Applications",
"Blacklist": true
},
"hernandito/calibreserver-docker": {
"ModeratorComment": "Deprecated in favour of the application available from Aptalca / LinuxServer",
"Blacklist": true
},
"hernandito/hernando-apachephp-docker": {
"ModeratorComment": "Deprecated in favour of the application available from LinuxServer - can no longer be pulled from dockerHub",
"Blacklist": true
},
"hernandito/docker-apache-php-adminer": {
"ModeratorComment": "Deprecated in favour of the application available from LinuxServer",
"Blacklist": true
},
"https://raw.githubusercontent.com/macexx/plugins/master/nut/nut.plg": {
"RemoveFromCA": true
},
"lsiocommunity/polipo": {
"ModeratorComment": "The polipo application itself is no longer being maintained. (Primarily because most web traffic is HTTPS)",
"Deprecated": true
},
"https://raw.githubusercontent.com/Squidly271/ca.backup/master/plugins/ca.backup.plg": {
"Deprecated": true,
"ModeratorComment": "While fully functional, development has ceased on this plugin and been replaced by v2. See <a href=https://forums.lime-technology.com/topic/61211-plugin-ca-appdata-backup-restore-v2/ target=_blank>HERE</a>"
},
"https://raw.github.com/bergware/dynamix/master/unRAIDv6/dynamix.ssd.trim.plg": {
"MinVer": "6.1.9",
"MaxVer": "6.11.0-rc3"
},
"openhab/openhab:amd64-offline": {
"Blacklist": true,
"ModeratorComment": "Blacklisted due to tag no longer available"
},
"openhab/openhab:amd64-online": {
"Blacklist": true,
"ModeratorComment": "Blacklisted due to tag no longer available"
},
"https://raw.githubusercontent.com/gfjardim/unRAID-plugins/master/plugins/statistics.sender.plg": {
"Requires": "Preclear Plugin",
"MaxVer": "6.8.9"
},
"http://unraid.zeron.ca/plugins/open-vm-tools/openVMTools.plg": {
"MaxVer": "6.3.5"
},
"https://raw.githubusercontent.com/gfjardim/unRAID-plugins/master/plugins/advanced.buttons.plg": {
"Blacklist": true,
"ModeratorComment": ".plg file no longer available"
},
"mccloud/ps3netsrv:debian": {
"Blacklist": true,
"ModeratorComment": "Dockerhub tag no longer available"
},
"mccloud/ps3netsrv:ubuntu": {
"Blacklist": true,
"ModeratorComment": "Dockerhub tag no longer available"
},
"mccloud/ps3netsrv:phusion": {
"Blacklist": true,
"ModeratorComment": "Dockerhub tag no longer available"
},
"mccloud/ps3netsrv:alpine": {
"Blacklist": true,
"ModeratorComment": "Dockerhub tag no longer available"
},
"https://raw.githubusercontent.com/Squidly271/ca.resource.monitor/master/plugins/ca.resource.monitor.plg": {
"MaxVer": "6.3.5"
},
"https://raw.githubusercontent.com/bshakil/unraid-libvirt-usbhotplug/master/plugins/libvirt.hotplug.usb.plg": {
"DeprecatedMaxVer": "6.5.0-rc4",
"ModeratorComment": "Deprecated in favour of dlandon's version"
},
"linuxserver/plexpy": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Tautulli. (Project renamed)"
},
"https://raw.githubusercontent.com/linuxserver/Unraid-DVB-Plugin/master/plugins/UnraidDVB.plg": {
"MinVer": "6.4.0"
},
"sparklyballs/mariadb-mywebsql": {
"Blacklist": true,
"ModeratorComment": "This application does not function out of the box. However existing installations may operate."
},
"linuxserver/plexrequests": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Ombi"
},
"nativedude/plex-requests": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Ombi"
},
"https://raw.githubusercontent.com/theone11/virtualbox_plugin/master/virtualbox.plg": {
"RemoveFromCA": true
},
"https://raw.githubusercontent.com/Squidly271/ransomware.bait/master/plugins/newransomware.bait.plg": {
"Deprecated": true
},
"steamcache/steamcache-dns:latest": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Lan Cache from Josh.5"
},
"steamcache/generic:latest": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Lan Cache from Josh.5"
},
"steamcache/sniproxy:latest": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Lan Cache from Josh.5"
},
"sparklyballs/mate-calibre": {
"Blacklist": true,
"ModeratorComment": "Deprecated in favour of one of the other Calibre applications"
},
"sparklyballs/moviegrabber": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the version from BinHex"
},
"google/cadvisor:latest": {
"WebUI": "http://[IP]:[PORT:8080]"
},
"https://raw.githubusercontent.com/Squidly271/ca.docker.autostart/master/plugins/ca.docker.autostart.plg": {
"MaxVer": "6.5.3"
},
"jasonbean/guacamole": {
"CAComment": "Default username and password is guacadmin"
},
"tombowditch/telly": {
"Blacklist": true,
"ModeratorComment": "dockerHub repository no longer exists. Existing installs should still work"
},
"zuhkov/observium": {
"Blacklist": true,
"ModeratorComment": "Deprecated in favor of uberchuckie's application"
},
"linuxserver/diskover": {
"Requires": "ElasticSearch container installed"
},
"https://raw.githubusercontent.com/theone11/serverlayout_plugin/master/serverlayout.plg": {
"Deprecated": true,
"DeprecatedMaxVer": "6.7.0"
},
"https://raw.githubusercontent.com/bergware/dynamix/master/unRAIDv6/dynamix.system.stats.plg": {
"UpdateMinVer": "6.7.0-rc1"
},
"yujiod/minecraft-mineos": {
"Deprecated": true,
"ModeratorComment": "Project Abandoned"
},
"ninthwalker/nowshowing": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Now Showing V2"
},
"linuxserver/unifi": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of a new app from linuxserver"
},
"https://raw.githubusercontent.com/Squidly271/ca.cleanup.appdata/master/plugins/ca.cleanup.appdata.plg": {
"CAComment": "In case of a severely misconfigured docker application, this plugin has the ability to delete an entire share. It is YOUR responsibility to confirm what folders the plugin offers to delete. The author takes no responsibility if you inadvertently delete an entire share due to your own mistakes"
},
"dreamcat4/pipework:1.1.5": {
"Blacklist": true,
"ModeratorComment": "Unable to be pulled from dockerHub due to unsupported image format"
},
"dreamcat4/pipework:1.1.3": {
"Deprecated": true,
"ModeratorComment": "While there still may be use for this application, the author has stated that under recent versions of docker, the use of this container is probably not required"
},
"dreamcat4/pipework": {
"Deprecated": true,
"ModeratorComment": "While there still may be use for this application, the author has stated that under recent versions of docker, the use of this container is probably not required"
},
"sparklyballs/shout-irc": {
"Blacklist": true,
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version"
},
"lsiocommunity/serviio": {
"CAComment": "LinuxServer.io has deprecated this container, and no further updates or fixes will be made to it.",
"Deprecated": true
},
"sparklyballs/lychee": {
"Blacklist": true,
"ModeratorComment": "As author now a member of linuxserver, would recommend use of the linuxserver.io version"
},
"gfjardim/owncloud": {
"Deprecated": true,
"ModeratorComment": "While this app is presumably still functional, a more up to date and support version is available in dlandon's repository"
},
"captinsano/foldingathome": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the more up to date version from MobiusNine"
},
"plexinc/pms-docker": {
"Support": "https://forums.plex.tv/"
},
"https://raw.githubusercontent.com/coppit/unraid-snmp/master/snmp.plg": {
"ModeratorComment": "Currently this plugin does not work with unRaid 6.7+. A compatible version from another author is now available in the apps tab",
"RemoveFromCA": true,
"MaxVer": "6.6.7"
},
"https://raw.githubusercontent.com/coppit/unraid-mosh/master/mosh.plg": {
"CAComment": "Currently this plugin does not work with unRaid 6.7+",
"MaxVer": "6.6.7",
"RemoveFromCA": true
},
"https://github.com/SlrG/unRAID/raw/master/Plugins/advCPaMV.plg": {
"MinVer": "6.6.7"
},
"mace/openvpn-as": {
"ModeratorComment": "Generally recommended to install the version from linuxserver instead",
"Deprecated": true
},
"mace/qbittorrent": {
"ModeratorComment": "Generally recommended to install the version from linuxserver instead",
"Deprecated": true
},
"volikon/lidarr": {
"ModeratorComment": "Generally recommended to install the version from linuxserver instead",
"Deprecated": true
},
"pducharme/plexconnect": {
"ModeratorComment": "Image format is disabled by docker by default and will be removed - Cannot be pulled",
"Blacklist": true
},
"linuxserver/kanzi": {
"CAComment": "You must review the directions <a href=https://github.com/linuxserver/docker-kanzi target=_blank>HERE</a> in order to properly set up"
},
"fithwum/teamspeak-debian": {
"Blacklist": true,
"ModeratorComment": "Effective Duplicate of teamspeak-alpine. Only base OS differs"
},
"https://github.com/SlrG/unRAID/raw/master/Plugins/ProFTPd.plg": {
"UpdateMinVer": "6.7.0"
},
"mace/ddclient": {
"ModeratorComment": "Can no longer be pulled from DockerHub",
"Blacklist": true
},
"linuxserver/codiad": {
"ModeratorComment": "Deprecated as per linuxserver.io",
"Deprecated": true
},
"linuxserver/sickrage": {
"ModeratorComment": "Deprecated as per linuxserver.io",
"Deprecated": true
},
"captinsano/deluge": {
"ModeratorComment": "While still presumably functional, you will be better off installing the version from binhex or linuxserver",
"Deprecated": true
},
"captinsano/koel": {
"ModeratorComment": "While still presumably functional, you will be better off installing the version from binhex",
"Deprecated": true
},
"captinsano/rutorrent": {
"ModeratorComment": "While still presumably functional, you will be better off installing the version from binhex or linuxserver",
"Deprecated": true
},
"captinsano/legacyrutorrent": {
"ModeratorComment": "While still presumably functional, you will be better off installing the version from binhex or linuxserver",
"Deprecated": true
},
"chvb/docker-webgrabplus": {
"ModeratorComment": "Would be generally recommended to install the version from linuxserver.io",
"Deprecated": true
},
"cmer/seafile": {
"ModeratorComment": "Deprecated in favour of the official version available within CA",
"Deprecated": true
},
"sdesbure/domoticz": {
"ModeratorComment": "Would possibly be wise to utilize instead the version from linuxserver.io",
"Deprecated": true
},
"captinsano/ddclient": {
"ModeratorComment": "Generally the unRaid community recommends installing the version from linuxserver.io",
"Deprecated": true
},
"mace/ddclient": {
"ModeratorComment": "Generally the unRaid community recommends installing the version from linuxserver.io",
"Deprecated": true
},
"dmaxwell/splunk": {
"ModeratorComment": "Probably would be best to install the up to date version from Andrew207",
"Deprecated": true
},
"coppit/handbrake": {
"ModeratorComment": "A better supported and more up to date app is available from DJoss",
"Deprecated": true
},
"tquinnelly/clamav": {
"ModeratorComment": "Deprecated in favour of the ClavAV alpine image from the same author",
"Deprecated": true
},
"limetech/plex": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of one of the other Plex containers (linuxserver, binhex, or the official Plex container). This does not mean that you have to switch to another version of Plex. Only new installations of this version are blocked."
},
"https://raw.github.com/bergware/dynamix/master/unRAIDv6/dynamix.system.temp.plg": {
"CAComment": "Note that this plugin will not detect all (or any) temperatures or fan speeds on all combinations of hardware. This is outside of the author's control"
},
"https://raw.github.com/bergware/dynamix/master/unRAIDv6/dynamix.system.autofan.plg": {
"CAComment": "Note that this plugin will not detect all (or any) temperatures or fan speeds on all combinations of hardware. This is outside of the author's control"
},
"aptalca/home-automation-bridge": {
"Deprecated": true,
"ModeratorComment": "Because author a member of linuxserver, recommended to use the version from linuxserver instead"
},
"aptalca/docker-rdp-calibre": {
"Deprecated": true,
"ModeratorComment": "Highly recommended to switch to the calibre application from linuxserver.io"
},
"https://raw.githubusercontent.com/limetech/Unraid.net/master/Unraid.net.plg": {
"RemoveFromCA": true
},
"spaceinvaderone/macinabox": {
"MinVer": "6.7.0"
},
"https://raw.githubusercontent.com/Fma965/corsairpsu-unraid/master/corsairpsu.plg": {
"CAComment": "Note that this plugin is for the intelligent series of power supplies from Corsair. Not all power supplies will work"
},
"https://raw.githubusercontent.com/Cyanlabs/jsonapi-unraid/master/jsonapi.plg": {
"MaxVer": "6.7.9"
},
"linuxserver/tt-rss": {
"Blacklist": true,
"ModeratorComment": "Repository no longer available"
},
"mprasil/bitwarden": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favor of the bitwarden-rs application available within Apps"
},
"xamindar/syncthing": {
"Deprecated": true,
"ModeratorComment": "Very out of date, and an up to date version is available from linuxserver"
},
"xamindar/quassel-core": {
"Deprecated": true,
"ModeratorComment": "Very out of date, and an up to date version is available from linuxserver"
},
"huxy/xmltv-sd-json": {
"CAComment": "This project appears to have been abandoned and is now deprecated",
"Deprecated": true
},
"https://raw.githubusercontent.com/dmacias72/unRAID-DevPack/master/plugin/DevPack.plg": {
"MaxVer": "6.10.3"
},
"mobiusnine/foldingathome": {
"CAComment": "The webUI for this application does not work. See <a href=https://forums.unraid.net/topic/36054-release-foldinghome-docker/page/5/?tab=comments#comment-828096 target=_blank>this post</a> for the fix",
"Support": "https://forums.unraid.net/topic/36054-release-foldinghome-docker/page/4/?tab=comments#comment-730278"
},
"ninthwalker/dashbtn": {
"ModeratorComment": "Reported this application is not functional. See <a href=https://forums.unraid.net/topic/55444-support-ninthwalker-docker-repository-plexreport-slack-invite-dashbtn/page/2/?tab=comments#comment-811428 target=_blank>here</a>",
"Deprecated": true
},
"rix1337/docker-jottacloud": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerhub"
},
"https://raw.githubusercontent.com/Skitals/unraid-dark-plugin/master/plugins/dark.theme.plg": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the theme engine plugin"
},
"https://raw.githubusercontent.com/limetech/sysdream/master/sysdream.plg": {
"Support": "https://forums.unraid.net/topic/88253-critical-security-vulnerabilies-discovered/"
},
"mccloud/ps3netsrv": {
"Blacklist": true,
"ModeratorComment": "Reports have surfaced that crypto mining software has been embedded in this container"
},
"mccloud/ps3netsrv:latest": {
"Blacklist": true,
"ModeratorComment": "Reports have surfaced that crypto mining software has been embedded in this container"
},
"storjlabs/storagenode:alpha": {
"RemoveFromCA": true
},
"linuxserver/organizr": {
"Deprecated": true,
"ModeratorComment": "Application itself is deprecated by the author, and is recommended by them to switch to OrganizrV2. However since there is no official method of switching from v1 to v2 if you're not having any issues you may wish to continue using this existing application"
},
"mlebjerg/steamcachebundle:latest": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the lan cache bundle by Josh.5"
},
"mlebjerg/steamcachebundle": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the lan cache bundle by Josh.5"
},
"aptalca/docker-calibre": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the calibre applications from LinuxServer.io"
},
"gfjardim/cups": {
"Deprecated": true
},
"linuxserver/mcmyadmin2": {
"Deprecated": true,
"ModeratorComment": "Deprecated as per linuxserver.io"
},
"ninthwalker/nowshowing:v2": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of Tautulli / Ombi / etc"
},
"titpetric/netdata": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the netdata app which uses the official repository (available within Apps)"
},
"ich777/steamcmd2:alienswarm": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:alienswarmreactivedrop": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:avorion": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:conanexiles": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:dodclassic": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:daysofwar": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:hurtworld": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:pavlovvr": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:projectzomboid": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:scp-secretlaboratory": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:squad": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:starbound": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:stationeers": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:svencoop": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"ich777/steamcmd2:tf": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"pinion/docker-mylar": {
"Blacklist": true,
"ModeratorComment": "Uses a deprecated schema on dockerHub."
},
"soana/mythtvhb": {
"Blacklist": true,
"ModeratorComment": "Description doesn't meet standards. At the very least, not updated in years and is an addition to a container which is also blacklisted within CA"
},
"linuxserver/libresonic": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of AirSonic"
},
"https://raw.githubusercontent.com/Squidly271/ca.mover.tuning/master/plugins/ca.mover.tuning.plg": {
"Deprecated": true,
"ModeratorComment": "Mover Tuning has been forked and the replacement has more features. See <a href=https://forums.unraid.net/topic/70783-plugin-mover-tuning/page/6/?tab=comments#comment-832127 target=_blank>here</a> for more details and instructions"
},
"aptalca/docker-rdp-boinc": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the Boinc container from LinuxServer.io. And, THANK-YOU for helping the cause"
},
"d34dc3n73r/netdata-glibc": {
"Requires": "nVidia Unraid plugin and an nVidia GPU"
},
"shoginn/dump1090:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"shoginn/flightaware:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"shoginn/flightradar24:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"shoginn/vrs:latest": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"linuxserver/hydra2": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of linuxserver/nzbhydra2"
},
"cmer/caddy": {
"Deprecated": true,
"ModeratorComment": "Author recommends to instead use the official container. See <a href=https://forums.unraid.net/topic/54876-support-cmer-caddy-web-server/?tab=comments#comment-849839 target=_blank>here</a>"
},
"soana/backupsql": {
"Deprecated": true,
"ModeratorComment": "Deprecated by the author. See <a href=https://forums.unraid.net/topic/38706-beta-backupsql-docker/?tab=comments#comment-849942 target=_blank>here</a>"
},
"captasic/openrgb:latest": {
"CAComment": "Please ensure you read the warning section within the description"
},
"https://raw.githubusercontent.com/Skitals/unraid-vfio-pci/master/plugins/vfio.pci.plg": {
"MaxVer": "6.9.0-beta1",
"VerMessage": "This plugin is not compatible with your version of the OS. It has been integrated with the OS in an improved form starting with 6.9.0"
},
"smdion/docker-h5ai": {
"Deprecated": true,
"ModeratorComment": "Painfully out of date, not supported, not updated"
},
"bocki/deemix": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of a more updated docker repository (bockiii/deemix-docker)"
},
"siwatinc/homebridge_nogui_unraid": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of homebridge with GUI"
},
"rix1337/docker-rsscrawler-sponsors-helper": {
"Blacklist": true,
"ModeratorComment": "No longer available on dockerHub"
},
"ich777/steamcmd2:atlas": {
"Deprecated": true,
"ModeratorComment": "The repository for this application has been changed from ich777/steamcmd2 to ich777/steamcmd. You will need to edit your template and make this adjustment"
},
"hotio/hddtemp2influxdb": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the telgraf smart plugin"
},
"organizrtools/organizr-v2": {
"Deprecated": true,
"ModeratorComment": "This application version is deprecated. The maintainer is transistioning to organizr/organizr"
},
"cryptpad/cryptpad:latest": {
"Blacklist": true,
"ModeratorComment": "Repository does not exist on dockerHub"
},
"linuxserver/letsencrypt": {
"Deprecated": true,
"ModeratorComment": "This application is being renamed to SWAG, and this repository (linuxserver/letsencrypt) is now deprecated. Migration instructions can be viewed here <a href=https://blog.linuxserver.io/2020/08/21/introducing-swag/ target=_blank>HERE</a>"
},
"digitalhigh/flextv": {
"Blacklist": true,
"ModeratorComment": "Repository/tag no longer exists on dockerHub"
},
"https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plg": {
"Deprecated": true,
"ModeratorComment": "This has been deprecated in favour of the rclone plugin"
},
"aptalca/docker-digikam": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the version from linuxserver.io"
},
"aptalca/docker-jdownloader2": {
"Deprecated": true,
"ModeratorComment": "Deprecated in favour of the version from ich777 or jlesage"
},
"monicahq/monicahq": {
"Deprecated": true,
"ModeratorComment": "Replaced by Monica from Monica"
},
"https://raw.githubusercontent.com/linuxserver/Unraid-DVB-Plugin/master/plugins/UnraidDVB.plg": {
"RemoveFromCA": true,
"Deprecated": true,
"DeprecatedMaxVer": "6.9.0"
},
"https://raw.githubusercontent.com/linuxserver/Unraid-Nvidia-Plugin/master/plugins/Unraid-Nvidia.plg": {
"RemoveFromCA": true,
"Deprecated": true,
"DeprecatedMaxVer": "6.9.0"
},
"slrgde/glftpd": {
"Blacklist": true,
"ModeratorComment": "Can no longer by pulled by dockerHub"
},
"jonaswinkler/paperless-ng": {
"Requires": "Redis container installed"
},
"thepaperlessproject/paperless": {
"CAComment": "While still functional, the author recommends to migrate to paperless-ng.",
"Deprecated": true
},
"linuxserver/rutorrent": {
"Deprecated": true,
"ModeratorComment": "Suggested to either utilize the binhex rutorrent app or the crazymax/rtorrent-rutorrent app (dockerHub Search)"
},
"linuxserver/pydio": {
"Deprecated": true,
"ModeratorComment": "Suggested to switch to pydio-cells"
},