-
Notifications
You must be signed in to change notification settings - Fork 0
/
Templates full list
4047 lines (4046 loc) · 101 KB
/
Templates full list
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": "2",
"templates": [
{
"categories": [
"Music"
],
"description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "CONTEXT_PATH",
"name": "CONTEXT_PATH",
"set": "airsonic"
},
{
"label": "JAVA_OPTS",
"name": "JAVA_OPTS",
"set": "-Xms256m -Xmx512m"
}
],
"image": "lscr.io/linuxserver/airsonic:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
"name": "airsonic",
"platform": "linux",
"ports": [
"4040:4040/tcp"
],
"restart_policy": "unless-stopped",
"title": "Airsonic",
"type": 1,
"volumes": [
{
"bind": "/portainer/Music",
"container": "/music"
},
{
"bind": "/portainer/Files/AppData/Airsonic/Playlists",
"container": "/playlists"
},
{
"bind": "/portainer/Podcasts",
"container": "/podcasts"
},
{
"bind": "/portainer/Files/AppData/Airsonic/Media",
"container": "/media"
},
{
"bind": "/portainer/Files/AppData/Config/Airsonic/",
"container": "/config"
}
]
},
{
"categories": [
"Other",
"Tools",
"Authentication"
],
"description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
"env": [
{
"label": "TZ",
"name": "TZ"
}
],
"image": "authelia/authelia:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
"name": "authelia",
"note": "Requires a configuration.yml file in order to work. Documentation is Available \u003ca href='https://docs.authelia.com/deployment/deployment-ha'\u003ehere\u003c/a\u003e.",
"platform": "linux",
"ports": [
"9091:9091/tcp"
],
"restart_policy": "unless-stopped",
"title": "Authelia",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Authelia",
"container": "/etc/authelia/"
}
]
},
{
"categories": [
"Video",
"Music"
],
"description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "TZ",
"name": "TZ"
}
],
"image": "lscr.io/linuxserver/bazarr:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
"name": "bazarr",
"platform": "linux",
"ports": [
"6767:6767/tcp"
],
"restart_policy": "unless-stopped",
"title": "Bazarr",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Bazarr",
"container": "/config"
},
{
"bind": "/portainer/TV",
"container": "/tv"
},
{
"bind": "/portainer/Movies",
"container": "/movies"
}
]
},
{
"categories": [
"Music"
],
"description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/beets:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
"name": "beets",
"platform": "linux",
"ports": [
"8337:8337/tcp"
],
"restart_policy": "unless-stopped",
"title": "Beets",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Beets",
"container": "/config"
},
{
"bind": "/portainer/Downloads",
"container": "/downloads"
},
{
"bind": "/portainer/Music",
"container": "/music"
}
]
},
{
"categories": [
"Books",
"Other"
],
"description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "booksonic",
"label": "CONTEXT_PATH",
"name": "CONTEXT_PATH"
}
],
"image": "lscr.io/linuxserver/booksonic:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
"name": "booksonic",
"platform": "linux",
"ports": [
"4040:4040/tcp"
],
"restart_policy": "unless-stopped",
"title": "Booksonic",
"type": 1,
"volumes": [
{
"bind": "/portainer/Books",
"container": "/books"
},
{
"bind": "/portainer/Files/Podcasts",
"container": "/podcast"
},
{
"bind": "/portainer/Files/AppData/Config/Booksonic",
"container": "/config"
}
]
},
{
"categories": [
"Other",
"Tools"
],
"description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
"image": "lscr.io/linuxserver/embystat:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
"name": "embystat",
"note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
"platform": "linux",
"ports": [
"6555:6555/tcp"
],
"restart_policy": "unless-stopped",
"title": "EmbyStat",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/EmbyStat",
"container": "/config"
}
]
},
{
"categories": [
"Music"
],
"description": null,
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/headphones:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
"name": "headphones",
"platform": "linux",
"ports": [
"8181:8181/tcp"
],
"restart_policy": "unless-stopped",
"title": "Headphones",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Headphones",
"container": "/config"
},
{
"bind": "/portainer/Downloads",
"container": "/Downloads"
},
{
"bind": "/portainer/Music",
"container": "/music"
}
]
},
{
"categories": [
"Tools",
"Web",
"Other"
],
"description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/heimdall:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
"name": "heimdall",
"platform": "linux",
"ports": [
"80/tcp",
"443/tcp"
],
"restart_policy": "unless-stopped",
"title": "Heimdall",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Heimdall",
"container": "/config"
}
]
},
{
"categories": [
"Other",
"Tools"
],
"description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
"image": "b4bz/homer:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
"name": "homer",
"note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
"platform": "linux",
"ports": [
"8902:8080/tcp"
],
"restart_policy": "unless-stopped",
"title": "Homer",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Homer/assets",
"container": "/www/assets"
},
{
"bind": "/portainer/Files/AppData/Config/Homer",
"container": "/www/config.yml"
}
]
},
{
"categories": [
"Other",
"Tools"
],
"description": "Create agents that monitor and act on your behalf.",
"image": "huginn/huginn:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
"name": "huginn",
"platform": "linux",
"ports": [
"3000:3000/tcp"
],
"restart_policy": "unless-stopped",
"title": "Huginn",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/huginn",
"container": "/var/lib/mysql"
}
]
},
{
"categories": [
"Cloud",
"Productivity",
"Tools",
"Other",
"Web"
],
"description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
"env": [
{
"default": "invoice.my.domain",
"label": "URL",
"name": "URL"
},
{
"label": "APP_KEY",
"name": "APP_KEY"
},
{
"label": "TZ",
"name": "TZ"
},
{
"label": "DATABASE_PASSWORD",
"name": "DATABASE_PASSWORD"
},
{
"label": "MYSQL_ROOT_PASSWORD",
"name": "MYSQL_ROOT_PASSWORD"
},
{
"label": "PORT",
"name": "PORT"
}
],
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
"name": "invoice_ninja",
"note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation \u003ca href='https://github.com/invoiceninja/dockerfiles'\u003ehere\u003c/a\u003e. ",
"platform": "linux",
"repository": {
"stackfile": "Template/Stack/invoice-ninja.yml",
"url": "https://github.com/SelfhostedPro/selfhosted_templates"
},
"title": "Invoice Ninja",
"type": 3
},
{
"categories": [
"Downloaders",
"Tools"
],
"description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/jackett:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
"name": "jackett",
"platform": "linux",
"ports": [
"9117:9117/tcp"
],
"restart_policy": "unless-stopped",
"title": "Jackett",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Jackett",
"container": "/config"
},
{
"bind": "/portainer/Downloads",
"container": "/downloads"
}
]
},
{
"categories": [
"Video",
"Music",
"Photos"
],
"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.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "TZ",
"name": "TZ"
}
],
"image": "lscr.io/linuxserver/jellyfin:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
"name": "jellyfin",
"platform": "linux",
"ports": [
"8096:8096/tcp",
"8920:8920/tcp"
],
"restart_policy": "unless-stopped",
"title": "Jellyfin",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Jelllyfin",
"container": "/config"
},
{
"bind": "/portainer/TV",
"container": "/data/tvshows"
},
{
"bind": "/portainer/Movies",
"container": "/data/movies"
}
]
},
{
"categories": [
"Video"
],
"description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/kodi-headless:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
"name": "kodi-headless",
"platform": "linux",
"ports": [
"8080/tcp",
"9777/udp"
],
"restart_policy": "unless-stopped",
"title": "Kodi Headless",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Kodi",
"container": "/config"
}
]
},
{
"categories": [
"Books"
],
"description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/lazylibrarian:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
"name": "lazylibrarian",
"platform": "linux",
"ports": [
"5299:5299/tcp"
],
"restart_policy": "unless-stopped",
"title": "LazyLibrarian",
"type": 1,
"volumes": [
{
"container": "/config"
},
{
"container": "/downloads"
},
{
"container": "/books"
}
]
},
{
"categories": [
"Tools",
"Web"
],
"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.\r\n \r\n Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n \r\n - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains can be www,ftp,cloud\r\n - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n \r\n - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;",
"env": [
{
"label": "EMAIL",
"name": "EMAIL",
"set": "-Xms256m -Xmx512m"
},
{
"label": "URL",
"name": "URL",
"set": "-Xms256m -Xmx512m"
},
{
"label": "SUBDOMAINS",
"name": "SUBDOMAINS",
"set": "www,"
},
{
"label": "ONLY_SUBDOMAINS",
"name": "ONLY_SUBDOMAINS",
"set": "false"
},
{
"label": "DHLEVEL",
"name": "DHLEVEL",
"set": "2048"
},
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "VALIDATION",
"name": "VALIDATION",
"set": "http"
},
{
"label": "DNSPLUGIN",
"name": "DNSPLUGIN",
"set": "http"
}
],
"image": "lscr.io/linuxserver/letsencrypt:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
"name": "letsencrypt",
"platform": "linux",
"ports": [
"80/tcp",
"443/tcp"
],
"restart_policy": "unless-stopped",
"title": "Let's Encrypt",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/LetsEncrypt",
"container": "/config"
}
]
},
{
"categories": [
"Other",
"Tools"
],
"description": "A Free and Open Source Speedtest for HTML5 and more.",
"image": "lscr.io/linuxserver/librespeed:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
"name": "librespeed",
"platform": "linux",
"ports": [
"80/tcp"
],
"restart_policy": "unless-stopped",
"title": "LibreSpeed",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/LibreSpeed",
"container": "/config"
}
]
},
{
"categories": [
"Cloud",
"Web",
"Management",
"Photos"
],
"description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/lychee:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
"name": "lychee",
"platform": "linux",
"ports": [
"80/tcp"
],
"restart_policy": "unless-stopped",
"title": "Lychee",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Lychee",
"container": "/config"
},
{
"bind": "/portainer/Pictures",
"container": "/pictures"
}
]
},
{
"categories": [
"Other",
"Tools"
],
"description": "An Enhanced drop in replacement for Mysql",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "MYSQL_ROOT_PASSWORD",
"name": "MYSQL_ROOT_PASSWORD",
"set": ""
}
],
"image": "lscr.io/linuxserver/mariadb:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
"name": "mariadb",
"platform": "linux",
"ports": [
"3306:3306/tcp"
],
"restart_policy": "unless-stopped",
"title": "MariaDB",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Mariadb",
"container": "/config"
}
]
},
{
"categories": [
"Other"
],
"description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/mcmyadmin2:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
"name": "mcmyadmin2",
"platform": "linux",
"ports": [
"8080:8080/tcp",
"25565:25565/tcp"
],
"restart_policy": "unless-stopped",
"title": "McMyAdmin 2",
"type": 1,
"volumes": [
{
"container": "/minecraft"
}
]
},
{
"categories": [
"Downloaders",
"Video"
],
"description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/medusa:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
"name": "medusa",
"platform": "linux",
"ports": [
"8081:8081/tcp"
],
"restart_policy": "unless-stopped",
"title": "Medusa",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Medusa",
"container": "/config"
},
{
"bind": "/portainer/TV",
"container": "/tv"
},
{
"bind": "/portainer/Downloads",
"container": "/downloads"
}
]
},
{
"categories": [
"Other"
],
"description": "Server version of minetest, a free, open source alternative to minecraft.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/minetest:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
"name": "minetest",
"platform": "linux",
"ports": [
"30000:30000/udp"
],
"restart_policy": "unless-stopped",
"title": "Minetest",
"type": 1,
"volumes": [
{
"container": "/config/.minetest"
}
]
},
{
"categories": [
"Video",
"Other",
"Tools"
],
"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.\n\n The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n ",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
}
],
"image": "lscr.io/linuxserver/minisatip:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
"name": "minisatip",
"platform": "linux",
"ports": [
"8875:8875/tcp",
"554:554/tcp",
"1900:1900/udp"
],
"restart_policy": "unless-stopped",
"title": "Minisatip",
"type": 1
},
{
"categories": [
"Other",
"Music"
],
"description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
"image": "lscr.io/linuxserver/mstream:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
"name": "mstream",
"platform": "linux",
"ports": [
"3000:3000/tcp"
],
"restart_policy": "unless-stopped",
"title": "Mstream",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Mstream",
"container": "/config"
},
{
"bind": "/portainer/Downloads",
"container": "/music"
}
]
},
{
"categories": [
"Other",
"Voice",
"Chat"
],
"description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"label": "TZ",
"name": "TZ"
}
],
"image": "goofball222/murmur:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
"name": "murmur",
"platform": "linux",
"ports": [
"64738:64738/tcp",
"64738:64738/udp"
],
"restart_policy": "unless-stopped",
"title": "Murmur",
"type": 1,
"volumes": [
{
"bind": "/etc/localtime:ro",
"container": "/etc/localtime"
},
{
"bind": "/portainer/Files/Config/Murmur",
"container": "/opt/murmur/config"
},
{
"bind": "/portainer/Files/Murmur/data",
"container": "/opt/murmur/data"
},
{
"bind": "/portainer/Files/Murmur/log",
"container": "/opt/murmur/log"
}
]
},
{
"categories": [
"Music",
"Other",
"Tools"
],
"description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
"env": [
{