-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathaddons.xml
More file actions
2247 lines (1826 loc) · 57.4 KB
/
Copy pathaddons.xml
File metadata and controls
2247 lines (1826 loc) · 57.4 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon id="docker.linuxserver.adguard"
name="AdGuardHome (LinuxServer.io)"
version="2.1.1"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>AdGuardHome in a docker container</summary>
<description>
AdGuard Home is a network-wide software for blocking ads and tracking. After you set it up, it'll cover ALL your home devices, and you don't need any client-side software for that.
***Port 53 has to be open on LibreELEC for this addon to work.
***Ports 67 and 68 have to be open if DHCP is enabled.
During first install, access http://LibreELEC-IP:3000 to set up AdGuardHome.
This is a docker addon brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.adguard:
---------------------------
2.1.1
- Update systemd to not delay Kodi start
- Add 32bit deprecation notice
2.1.0
- Switch to new multi-arch images
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.beets"
name="Beets (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Beets in a docker container</summary>
<description>
Beets is a music library manager and not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.beets:
-------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.0
- Switch to multi-arch image
- Improve chown logic for data folders
1.0.7
- Support *elec
1.0.6
- Use the updater addon for image updates
- Faster start on boot
- Enable aarch64 image
- Enable direct communication between containers
1.0.5
- Wait for network
1.0.4
- Fix timezone bug
1.0.3
- Add aarch64 support
1.0.2
- Fix port mapping typo
1.0.1
- Run as user nobody
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.boinc"
name="Boinc (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Boinc as a Docker container</summary>
<description>
BOINC is a platform for high-throughput computing on a large scale (thousands or millions of computers). It can be used for volunteer computing (using consumer devices) or grid computing (using organizational resources). It supports virtualized, parallel, and GPU-based applications.
Default port: 8088
This addon automatically sets up QuickSync enabled Intel GPUs when present. Keep in mind that not all projects hand out GPU jobs.
Please visit https://linuxserver.io for more info on this image and addon.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.boinc:
------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.daapd"
name="Daapd (LinuxServer.io)"
version="1.0.2"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Daapd in a docker container</summary>
<description>
Daapd (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), Chromecast, MPD and internet radio.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.daapd:
-------------------------
1.0.2
- Force aarch64 image on 32/64 bit hybrid systems
1.0.1
- Update systemd to not delay Kodi start
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.domoticz"
name="Domoticz (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Domoticz in a docker container</summary>
<description>
Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.
Notice: The first time it is started, the container generates DHPARAMS, which can take a while especially on low powered systems (up to 2 hours), during which time the webserver will not be up. Be patient.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.domoticz:
-----------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.0
- Switch to multi-arch image
1.0.2
- Support *elec
1.0.1
- Use updater addon for image updates
- Faster start on boot
- Enable aarch64 build
- Enable direct communication between containers
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.duckdns"
name="DuckDNS (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>DuckDNS dynamic dns updater as a Docker container</summary>
<description>
Duckdns is a free dynamic DNS service hosted on Amazon VPC. Unlike most other free dynamic DNS providers, DuckDNS accounts do not require periodic user action to keep them alive. Visit www.duckdns.org to register your domain.
This docker container is brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
Please visit www.duckdns.org to get a custom url and token
</disclaimer>
<news>
docker.linuxserver.duckdns:
---------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.0
- Fix opening of gui settings during first start
1.0.12
- Switch to multi-arch images
1.0.11
- Support *elec
1.0.10
- Open settings window during initial install
1.0.9
- Use updater addon for image updates
- Faster start on boot
- Enable aarch64 image
1.0.8
- Wait for network
1.0.7
- Fix timezone bug
1.0.6
- Added aarch64 support
1.0.5
- Update image links
1.0.4
- Change default settings so container doesn't continuously restart
1.0.3
- Run as user nobody
1.0.2
- Unified addon for x86_64 and arm
1.0.1
- Switch logging to local file for easy access
1.0.0
- Initial addon
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.duplicati"
name="Duplicati (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Duplicati in a docker container</summary>
<description>
Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.duplicati:
-----------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.1
- Fix typo in source location setting
1.1.0
- Add support for additional docker arguments
- Improve chown logic for data folders
1.0.3
- Switch to multi-arch images
1.0.2
- Support *elec
1.0.1
- Use updater addon to update images
- Faster start on boot
- Enable direct communication between containers
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.emby"
name="Emby (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Emby Server as a Docker container</summary>
<description>
Emby organizes video, music and photos from personal media libraries and streams them to smart televisions, streaming boxes and mobile devices.
Please visit https://linuxserver.io for more info on this image and addon.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.emby:
------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.2.2
- Fix image updates for betas
1.2.1
- Add uid/gid override for remote mount users (0/root is not supported)
1.2.0
- Add beta builds as an option
- Enable V4L2 for hw transcoding on Raspberry Pi
- Remove settings for vaapi and openmax, auto detect instead
1.1.2
- Switch to Linuxserver.io images
- Default to bridge network with optional host networking
- Enable OpenMax for hw transcoding on Raspberry Pi
1.1.1
- Replace deprecated NEON variant with the regular arm32v7 image (now contains NEON optimizations)
1.1.0
- Improve chown logic
1.0.5
- Support *elec
1.0.4
- Use updater addon for image updates
- Faster start on boot
- Enable hw transcoding via vaapi (x86_64 only)
1.0.3
- Fix uid and gid variables
1.0.2
- Change the arm version repos
1.0.1
- Wait for network
1.0.0
- Initial addon
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.foldingathome"
name="Folding@home (LinuxServer.io)"
version="2.0.2"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Folding@home as a Docker container</summary>
<description>
Folding@home is a distributed computing project for simulating protein dynamics, including the process of protein folding and the movements of proteins implicated in a variety of diseases. It brings together citizen scientists who volunteer to run simulations of protein dynamics on their personal computers. Insights from this data are helping scientists to better understand biology, and providing new opportunities for developing therapeutics.
IMPORTANT: This addon is for x86_64 devices only.
Default port: 7396
Please visit https://linuxserver.io for more info on this image and addon.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.foldingathome:
------------------------
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.heimdall"
name="Heimdall (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Heimdall landing page in a docker container</summary>
<description>
Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way. Simplicity is the key to Heimdall. Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.heimdall:
-------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.jellyfin"
name="Jellyfin (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Jellyfin as a Docker container</summary>
<description>
Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.
Please visit https://linuxserver.io for more info on this image and addon.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.jellyfin:
------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.2
- Enable hardware decode of h264 on Raspberry Pi (enabled in the gui via OpenMax H264 decode)
1.1.1
- Fix image updates for betas
1.1.0
- Add nightly builds as an option
- Enable V4L2 for hw transcoding on Raspberry Pi
- Remove settings for vaapi and openmax, auto detect instead
- Add uid/gid override for remote mount users (0/root is not supported)
1.0.2
- Fix uid/gid
- Add host networking option (for dlna)
1.0.1
- Fix openmax detection
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.letsencrypt"
name="Nginx Letsencrypt (LinuxServer.io)"
version="2.0.2"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Nginx Letsencrypt in a docker container</summary>
<description>
This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.
***Port 443 on the router has to be forwarded to this machine.
***Port 80 on the router has to be forwarded to this machine if using http validation.
***During first run, dhparams are generated before the webserver is up, which may take over an hour especially on arm.
For dns validation, go to the config folder and edit the relevant ini/json file under /config/dns-conf with your settings
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<broken>
Letsencrypt image has been superseded by the SWAG image. Please switch to the SWAG addon.
</broken>
<news>
docker.linuxserver.letsencrypt:
-------------------------------
2.0.2
- Update systemd to not delay Kodi start
- Mark as broken as addon is replaced by SWAG
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.1
- Add new dns plugin options (domeneshop, gandi, inwx, linode, transip)
- Remove deprecated validation option, tls-sni
1.1.0
- Switch to multi-arch builds
- Add duckdns validation
- Wail until settings are entered before starting container
1.0.12
- Add dns validation support for ovh
1.0.11
- Support *elec
1.0.10
- Open settings window if first install
- Silence docker stop error
1.0.9
- Use updater addon for image updates
- Faster start on boot
- Enable direct communication between containers
- Enable aarch64 image
1.0.8
- Add validation parameter
- Add dns validation support
- Add port 80 mapping (required for http validation, optional for dns)
1.0.7
- Wait for network
1.0.6
- Fix timezone bug
1.0.5
- Added aarch64 support
1.0.4
- Stall systemd if variables are not set
1.0.3
- Update dockerhub image links
1.0.2
- Change group to users
1.0.1
- Change user to nobody
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.mariadb"
name="MariaDB (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>MariaDB in a docker container</summary>
<description>
MariaDB is one of the most popular database servers. Made by the original developers of MySQL.
During first install, or new database creation the addon settings window will be opened and you will have to set a root password.
Container will not be created until a root password is set.
Changing the root password later through addon settings won't have any effect. But you can change it through the mysql interface.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.mariadb:
---------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.1.1
- Allow new database and user creation via settings (only during first start with no existing data)
1.1.0
- Switch to multi-arch builds
- Fix opening settings window on first install
1.0.11
- Support *elec
1.0.10
- Enable required root password during database creation
- Remove mysql for kodi library option as it no longer delays kodi start
1.0.9
- Clean up stale images in case prune fails
- Enable aarch64 image
1.0.8
- Fix cron entry
1.0.7
- Add network-alias for intercontainer communication
1.0.6
- Use the new docker image updater for image updates (faster startup on boot)
- Use the custom lsio docker network for intercontainer communication via containername as hostname
1.0.5
- Wait for network
1.0.4
- Add support for kodi library on the same machine
1.0.3
- Fix timezone bug
1.0.2
- Added aarch64 support
1.0.1
- Change user to nobody
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.minisatip"
name="Minisatip (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Minisatip in a docker container</summary>
<description>
Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.
This is a docker container brought to you by the LinuxServer.io team.
Please visit https://linuxserver.io for more information.
</description>
<disclaimer>
</disclaimer>
<news>
docker.linuxserver.minisatip:
-----------------------------
2.0.3
- Force aarch64 image on 32/64 bit hybrid systems
2.0.2
- Update systemd to not delay Kodi start
2.0.1
- Remove LibreELEC dependency
2.0.0
- Kodi Matrix compatibility
1.0.9
- Switch to multi-arch builds
1.0.8
- Support *elec
1.0.7
- Use updater addon to update images
- Faster start on boot
- Enable aarch64 image
- Enable direct communication between containers
1.0.6
- Wait for network
1.0.5
- Fix timezone bug
1.0.4
- Added aarch64 support
1.0.3
- Fix default settings
1.0.2
- Add device setting
1.0.1
- Run as user nobody
1.0.0
- Initial release
</news>
<platform>all</platform>
<website>http://linuxserver.io/</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="docker.linuxserver.muximux"
name="Muximux (LinuxServer.io)"
version="2.0.3"
provider-name="LinuxServer.io">
<requires>
<import addon="service.system.docker" version="0.0.0" />
<import addon="docker.linuxserver.updater" version="0.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py">
<provides></provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Muximux in a docker container</summary>
<description>
Muximux is a lightweight portal to view and manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.