-
Notifications
You must be signed in to change notification settings - Fork 9
/
portainer_app_template.json
2600 lines (2600 loc) · 95.3 KB
/
portainer_app_template.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
{
"version": "2",
"version_for_rakpios_cli": "v0.12",
"templates": [
{
"categories": [
"Other"
],
"description": "Portainer Community Edition (CE) is a powerful, open source toolset that allows you to easily build and manage containers in Docker, Docker Swarm, Kubernetes and Azure ACI.",
"post_up_info": "Visit https://{host-ip}:9443 to access the web interface.\nDeafault username: admin\nDefault password: changeme",
"note": "Visit <a href='https://{host-ip}:<9443'>https://{host-ip}:9443 to access the web interface.</a> <ulstyle='padding-left:20px'><li>Default username: admin</li><li>Default password: changeme</li>",
"logo": "https://github.com/RAKWireless/portainer-templates/raw/master/logo/portainer_logo.png",
"name": "Portainer",
"platform": "linux",
"repository": {
"stackfile": "Stack/Portainer/portainer.yml",
"url": "https://github.com/RAKWireless/portainer-templates"
},
"title": "Portainer",
"type": 3,
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
}
]
},
{
"categories": [
"LoRaWAN"
],
"description": "This app deploys a LoRaWAN gateway with Basics™ Station Packet Forward protocol using Docker.",
"post_up_info": "Please check the Github repository https://github.com/xoseperez/basicstation for more information.",
"note": "Check <a href='https://github.com/xoseperez/basicstation'>LoRa Basics™ Station for Docker Github repository</a> for more details.",
"image": "xoseperez/basicstation:v2",
"logo": "https://raw.githubusercontent.com/RAKWireless/portainer-templates/master/logo/gateway_logo.png",
"name": "BasicsStation",
"title": "LoRa Basics™ Station for Docker",
"hostname": "basicstation",
"platform": "linux",
"restart_policy": "unless-stopped",
"type": 1,
"network": "host",
"privileged": true,
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"label": "RAK gateway model/LoRaWAN concentrator model number/Semtech LoRa chip model",
"name": "MODEL",
"default": "RAK5146",
"select": [
{
"text": "RAK7243(no LTE)",
"value": "RAK7243"
},
{
"text": "RAK7243C(with LTE)",
"value": "RAK7243C"
},
{
"text": "RAK7244(no LTE)",
"value": "RAK7244"
},
{
"text": "RAK7244(with LTE)",
"value": "RAK7244C"
},
{
"text": "RAK7246",
"value": "RAK7246"
},
{
"text": "RAK7246G",
"value": "RAK7246G"
},
{
"text": "RAK7248(no LTE)",
"value": "RAK7248"
},
{
"text": "RAK7248C(with LTE)",
"value": "RAK7248C"
},
{
"text": "RAK7271",
"value": "RAK7271"
},
{
"text": "RAK7371",
"value": "RAK7371"
},
{
"text": "RAK831(SPI only)",
"value": "RAK831"
},
{
"text": "RAK833",
"value": "RAK833"
},
{
"text": "RAK2245",
"value": "RAK2245"
},
{
"text": "RAK2246",
"value": "RAK2246"
},
{
"text": "RAK2247",
"value": "RAK2247"
},
{
"text": "RAK2287",
"value": "RAK2287"
},
{
"text": "RAK5146",
"value": "RAK5146"
},
{
"text": "RAK5166",
"value": "RAK5166"
},
{
"text": "RAK5167",
"value": "RAK5167"
},
{
"text": "IC880A",
"value": "IC880A"
},
{
"text": "PG1301",
"value": "PG1301"
},
{
"text": "PG1302",
"value": "PG1302"
},
{
"text": "WM1302",
"value": "WM1302"
},
{
"text": "R11E-LORA8",
"value": "R11E-LORA8"
},
{
"text": "R11E-LORA9",
"value": "R11E-LORA9"
},
{
"text": "SX1301",
"value": "SX1301"
},
{
"text": "SX1302",
"value": "SX1302"
},
{
"text": "SX1303",
"value": "SX1303"
},
{
"text": "SX1308",
"value": "SX1308"
}
],
"description": "Set RAKwireless Developer gateway model or LoRaWAN concentrator model number or Semtech LoRa chip model. When using concentrator model number or Semtech LoRa chip model, you will probably have to specify other features of the module."
},
{
"default": "/dev/spidev0.0",
"label": "Device",
"name": "DEVICE",
"description": "Where the concentrator is connected to"
},
{
"name": "INTERFACE",
"label": "Concentrator interface",
"select": [
{
"text": "SPI",
"value": "SPI"
},
{
"text": "USB",
"value": "USB"
}
],
"description": "The interface used by the concentrator, can be guessed from Device"
},
{
"name": "USE_LIBGPIOD",
"label": "Use libgpiod",
"default": "1",
"select": [
{
"text": "True",
"value": "1"
},
{
"text": "False",
"value": "0"
}
],
"description": "Use new libgpiod to access the GPIO to reset/enable the concentrator"
},
{
"default": "17",
"label": "Gateway RESET GPIO",
"name": "GW_RESET_GPIO",
"description": "GPIO number that resets"
},
{
"default": "0",
"label": "Gateway ENABLE GPIO",
"name": "GW_ENABLE_GPIO",
"description": "GPIO number that enables power (by pulling HIGH) to the concentrator"
},
{
"default": "eth0",
"label": "GATEWAY EUI NIC",
"name": "GATEWAY_EUI_NIC",
"description": "Interface to use when generating the EUI"
},
{
"label": "GATEWAY EUI",
"name": "GATEWAYEUI",
"description": "Gateway EUI to use, autogenerated from GATEWAY EUI NIC if defined, otherwise in order from: eth0, wlan0, usb0"
},
{
"default": "eu1",
"label": "TTN REGION",
"name": "TTN_REGION",
"description": "Region of the TTN server to use, possible values: eu1, nam1, au1"
},
{
"default": "change this to your own TC key from TTN",
"label": "TC KEY",
"name": "TC_KEY",
"description": "Unique TTN Gateway Key used for TTS Community Edition pasted from TTN console"
}
]
},
{
"categories": [
"LoRaWAN"
],
"description": "This project deploys a LoRaWAN gateway with UDP Packet Forwarder protocol using Docker.",
"post_up_info": "Please check the Github repository https://github.com/RAKWireless/udp-packet-forwarder for more information.",
"note": "Check <a href='https://github.com/RAKWireless/udp-packet-forwarder'>LoRaWAN UDP Packet Forwarder Protocol for Docker Github repository</a> for more details.",
"image": "rakwireless/udp-packet-forwarder:v2",
"logo": "https://raw.githubusercontent.com/RAKWireless/portainer-templates/master/logo/gateway_logo.png",
"name": "UDPPacketForwarder",
"title": "UDP Packet Forwarder",
"hostname": "UDP",
"platform": "linux",
"restart_policy": "unless-stopped",
"type": 1,
"network": "host",
"privileged": true,
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"name": "MODEL",
"default": "RAK5146",
"label": "RAK gateway model/LoRaWAN concentrator model number/Semtech LoRa chip model",
"select": [
{
"text": "RAK7243 (no LTE)",
"value": "RAK7243"
},
{
"text": "RAK7243C (with LTE)",
"value": "RAK7243C"
},
{
"text": "RAK7244 (no LTE)",
"value": "RAK7244"
},
{
"text": "RAK7244 (with LTE)",
"value": "RAK7244C"
},
{
"text": "RAK7246",
"value": "RAK7246"
},
{
"text": "RAK7246G",
"value": "RAK7246G"
},
{
"text": "RAK7248 (no LTE)",
"value": "RAK7248"
},
{
"text": "RAK7248C (with LTE)",
"value": "RAK7248C"
},
{
"text": "RAK7271",
"value": "RAK7271"
},
{
"text": "RAK7371",
"value": "RAK7371"
},
{
"text": "RAK831 (SPI only)",
"value": "RAK831"
},
{
"text": "RAK833",
"value": "RAK833"
},
{
"text": "RAK2245",
"value": "RAK2245"
},
{
"text": "RAK2246",
"value": "RAK2246"
},
{
"text": "RAK2247",
"value": "RAK2247"
},
{
"text": "RAK2287",
"value": "RAK2287"
},
{
"text": "RAK5146",
"value": "RAK5146"
},
{
"text": "RAK5166",
"value": "RAK5166"
},
{
"text": "RAK5167",
"value": "RAK5167"
},
{
"text": "RAK5148",
"value": "RAK5148"
},
{
"text": "IC880A",
"value": "IC880A"
},
{
"text": "WM1302",
"value": "WM1302"
},
{
"text": "R11E-LR8",
"value": "R11E-LR8"
},
{
"text": "R11E-LR9",
"value": "R11E-LR9"
},
{
"text": "R11E-LR2",
"value": "R11E-LR2"
},
{
"text": "SX1280ZXXXXGW1",
"value": "SX1280ZXXXXGW1"
},
{
"text": "SX1301",
"value": "SX1301"
},
{
"text": "SX1302",
"value": "SX1302"
},
{
"text": "SX1303",
"value": "SX1303"
},
{
"text": "SX1308",
"value": "SX1308"
}
],
"description": "Set RAKwireless Developer gateway model or LoRaWAN concentrator model number or Semtech LoRa chip model. When using concentrator model number or Semtech LoRa chip model, you will probably have to specify other features of the module."
},
{
"name": "INTERFACE",
"label": "Concentrator interface",
"default": "SPI",
"select": [
{
"text": "SPI",
"value": "SPI"
},
{
"text": "USB",
"value": "USB"
},
{
"text": "AUTO (only if RADIO_DEV=AUTO)",
"value": "AUTO"
}
],
"description": "If MODEL is defined it will get the interface type from it, otherwise defaults to SPI"
},
{
"name": "HAS_GPS",
"label": "Has GPS",
"default": "1",
"select": [
{
"text": "True",
"value": "1"
},
{
"text": "False",
"value": "0"
}
],
"description": "If MODEL is defined it will get this from it, otherwise defaults to 1 (with GPS)"
},
{
"name": "HAS_LTE",
"label": "Has LTE",
"default": "0",
"select": [
{
"text": "True",
"value": "1"
},
{
"text": "False",
"value": "0"
}
],
"description": "If MODEL id defined it will get this from it, otherwise defaults to 0 (without LTE)"
},
{
"name": "USE_LIBGPIOD",
"label": "Use libgpiod",
"default": "1",
"select": [
{
"text": "True",
"value": "1"
},
{
"text": "False",
"value": "0"
}
],
"description": "Use new libgpiod to access the GPIO to reset/enable the concentrator"
},
{
"name": "RESET_GPIO",
"default": "17",
"label": "GATEWAY RESET GPIO",
"description": "GPIO number that resets"
},
{
"name": "POWER_EN_GPIO",
"default": "0",
"label": "the GPIO enables power",
"description": "GPIO number that enables power (by pulling HIGH) to the concentrator. 0 means not required"
},
{
"name": "RADIO_DEV",
"label": "Where the concentrator is connected to",
"description": "Don't set it if you don't know what this means, by default /dev/spidev0.0 for SPI concentrators, /dev/ttyACM0 or /dev/ttyUSB0 for USB concentrators. Set to AUTO to auto-discover."
},
{
"name": "GPS_DEV",
"label": "Where the GPS is connected to",
"description": "Don't set it if you don't know what this means, by default /dev/ttyAMA0 except when HAS_LTE is 1, in this case it will default to /dev/i2c-1. "
},
{
"name": "GATEWAY_EUI_SOURCE",
"label": "Source of the Gateway EUI",
"default": "chip",
"select": [
{
"text": "Use Semtech LoRa chip ID",
"value": "chip"
},
{
"text": "Generate gateway EUI based on following network interfaces: eth0, wlan0, usb0, eth1, or most used NIC. If you need to use a custom gateway EUI, see option below",
"value": ""
}
],
"description": "Source of the gateway EUI, default to use the Semtech Chip ID"
},
{
"name": "GATEWAY_EUI",
"label": "Gateway EUI",
"description": "Set a custom Gateway EUI (8 bytes in hex format),this takes precedence over the previous gateway EUI setting."
},
{
"name": "TTN_REGION",
"label": "TTN region",
"default": "eu1",
"description": "If using a TTN server, region of the TTN server to use. Can be eu1, nam1, and au1"
},
{
"name": "SERVER_HOST",
"label": "LNS URL",
"description": "Use a completely difference LNS server. By default it will use the official TTN server address based on the TTN region choosen"
},
{
"name": "SERVER_PORT",
"label": "Server port",
"default": "1700",
"description": "Port the server is listening to"
},
{
"name": "BAND",
"label": "TTN Frequency Plan",
"default": "eu_863_870",
"select": [
{
"text": "as_915_921(as_923_3)",
"value": "as_915_921"
},
{
"text": "as_915_928(as_923_1)",
"value": "as_915_928"
},
{
"text": "as_917_920(as_923_4)",
"value": "as_917_920"
},
{
"text": "as_920_923(as_923_2)",
"value": "as_920_923"
},
{
"text": "au_915_928",
"value": "au_915_928"
},
{
"text": "cn_470_510",
"value": "cn_470_510"
},
{
"text": "eu_433",
"value": "eu_433"
},
{
"text": "eu_863_870",
"value": "eu_863_870"
},
{
"text": "in_865_867",
"value": "in_865_867"
},
{
"text": "kr_920_923",
"value": "kr_920_923"
},
{
"text": "ru_864_870",
"value": "ru_864_870"
},
{
"text": "us_902_928",
"value": "us_902_928"
}
],
"description": "Regional parameters identifier"
},
{
"name": "WHITELIST_NETIDS",
"label": "WHITELIST_NETIDS",
"description": "Allow only messages from devices in this NetIDs, leave empty to disable filtering."
},
{
"name": "WHITELIST_OUIS",
"label": "WHITELIST_OUIS",
"description": "Allow only join requests from devices from these OUIs, leave empty to disable filtering."
},
{
"name": "STAT_INTERVAL",
"label": "STAT_INTERVAL",
"default": "30",
"description": "Interval between heartbeat messages. Defaults to 30s."
},
{
"name": "PUSH_TIMEOUT",
"label": "PUSH_TIMEOUT",
"default": "100",
"description": "Timeout when pushing messages to LNS. Defaults to 100ms. Increase if missing packets on LNS side."
},
{
"name": "GPS_LATITUDE",
"label": "GPS LATITUDE",
"description": "Report this latitude for the gateway"
},
{
"name": "GPS_LONGITUDE",
"label": "GPS LONGITUDE",
"description": "Report this longitude for the gateway"
},
{
"name": "GPS_ALTITUDE",
"label": "GPS ALTITUDE",
"description": "Report this altitude for the gateway"
}
]
},
{
"categories": [
"LoRaWAN"
],
"description": "The Helium gateway-rs is a service designed to run on Linux-based LoRaWAN gateways. It's intended to run alongside a typical LoRa packet forwarder and to connect via Semtech's Gateway Messaging Protocol. It does not mine HNT for now but can be used to increase coverage on the Helium network.",
"post_up_info": "The image comes with helium/gateway-rs & helium-wallet packages installed.\nStart a UDP packet forwarder service first, make sure to set the packet forwarder to forward to the (default) configured helium-gateway on 127.0.0.1 at udp port 1680.\nThe gateway_key.bin file is stored under /etc/helium_gateway on your host by default.\nTo get the public key address and animal name on your host, please use this command: docker exec {container name} helium_gateway key info.\nPlease check https://github.com/helium/gateway-rs for more details. ",
"note": "The image comes with helium/gateway-rs & helium-wallet packages.<br>Start a UDP packet forwarder service first, make sure to set the packet forwarder to forward to the (default) configured helium-gateway on 127.0.0.1 at udp port 1680.<br>The <strong>gateway_key.bin</strong> file is stored under <strong>/etc/helium_gateway</strong> on your host by default.<br>Use the command <strong>docker exec {container name} helium_gateway key info </strong>on your host to get the public key address and animal name.<br>Check <a href='https://github.com/helium/gateway-rs'>Helium gateway-rs Github Repository</a> for more details.",
"image": "sheng2216/helium:latest",
"logo": "https://raw.githubusercontent.com/RAKWireless/portainer-templates/master/logo/helium_logo.png",
"name": "HeliumGatewayRS",
"title": "Helium gateway-rs",
"platform": "linux",
"restart_policy": "unless-stopped",
"type": 1,
"network": "host",
"privileged": true,
"command": "/bin/bash -c /app/start.sh",
"volumes": [
{
"bind": "/etc/helium_gateway",
"container": "/etc/helium_gateway"
}
],
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"name": "version",
"default": "latest",
"label": "Version of gateway-rs package ",
"description": "Version of gateway-rs package, default is set to the latest. You can specify a history version, for example, v1.0.0-alpha.29. Please check the release note at https://github.com/helium/gateway-rs/releases"
},
{
"name": "platform",
"label": "Supported Platforms",
"default": "raspi_64",
"description": "Check the Supported Platform section on https://github.com/helium/gateway-rs to see if your platfrom is on the list"
},
{
"name": "region",
"label": "Region",
"default": "US915",
"select": [
{
"text": "US915",
"value": "US915"
},
{
"text": "EU868",
"value": "EU868"
},
{
"text": "EU433",
"value": "EU433"
},
{
"text": "CN470",
"value": "CN470"
},
{
"text": "CN779",
"value": "CN779"
},
{
"text": "AU915",
"value": "AU915"
},
{
"text": "AS923_1",
"value": "AS923_1"
},
{
"text": "AS923_2",
"value": "AS923_2"
},
{
"text": "AS923_3",
"value": "AS923_3"
},
{
"text": "AS923_4",
"value": "AS923_4"
},
{
"text": "KR920",
"value": "KR920"
},
{
"text": "IN865",
"value": "IN865"
}
],
"description": "Possible valuess for regional parameters"
}
]
},
{
"categories": [
"Home Automation"
],
"description": "Node-RED is a flow-based development tool for visual programming.",
"post_up_info": "Browse to http://{host-ip}:1880 to access the web interface.\nCheck https://nodered.org/docs/getting-started/docker for Node-RED docker quick start guide.",
"note": "Browse to <a herf='http://{host-ip}:1880'>http://{host-ip}:1880</a> to access the web interface.<br>Check <a href='https://nodered.org/docs/getting-started/docker'>Node-RED docker quick start guide</a> for more details.",
"logo": "https://nodered.org/about/resources/media/node-red-icon-2.png",
"title": "NodeRed",
"name": "NodeRed",
"platform": "linux",
"network": "bridge",
"type": 3,
"repository": {
"stackfile": "Stack/NodeRed/nodered.yml",
"url": "https://github.com/RAKWireless/portainer-templates"
},
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"default": "false",
"label": "Enable the projects feature",
"name": "NODE_RED_ENABLE_PROJECTS",
"select": [
{
"text": "Enable",
"value": "true"
},
{
"text": "Disable",
"value": "false"
}
]
}
]
},
{
"categories": [
"Home Automation"
],
"description": "Zigbee2MQTT is a nodejs Gateway application that connects Zigbee networks to MQTT networks.",
"post_up_info": "Browse to http://{host-ip}:<8002> to access the web interface, or change the external port number to your customised port number. \nCheck https://www.zigbee2mqtt.io/guide/configuration/ for Zigbee2MQTT configuration guide.",
"note": "Browse to <a href='http://{host-ip}:<8002'>http://{host-ip}:8002</a> to access the web interface, or change the external port number to your customised port number. Check <a href='https://www.zigbee2mqtt.io/guide/configuration/'>Zigbee2MQTT configuration guide</a> for more details.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"default": "true",
"label": "Allow new devices to join",
"name": "ZIGBEE2MQTT_CONFIG_PERMIT_JOIN",
"select": [
{
"text": "Enable",
"value": "true"
},
{
"text": "Disable",
"value": "false"
}
]
},
{
"default": "zigbee2mqtt",
"label": "MQTT base topic",
"name": "ZIGBEE2MQTT_CONFIG_MQTT_BASE_TOPIC",
"description": "Default MQTT base topic"
},
{
"default": "mqtt://mqtt",
"label": "MQTT server address",
"name": "ZIGBEE2MQTT_CONFIG_MQTT_SERVER",
"description": "MQTT server address"
},
{
"default": "/dev/ttyUSB0",
"label": "Zigbee Adapter path",
"name": "ZIGBEE2MQTT_CONFIG_SERIAL_PORT",
"description": "Zigbee Adapter path, for example, the serial port the adapter connected to:"
},
{
"default": "true",
"label": "Enable the Zigbee2MQTT frontend",
"name": "ZIGBEE2MQTT_CONFIG_FRONTEND",
"select": [
{
"text": "Enable",
"value": "true"
},
{
"text": "Disable",
"value": "false"
}
]
},
{
"default": "8002",
"label": "Frontend external port",
"name": "external_port",
"description": "Frontend external port bind to Zigbee2MQTT service's 8080 port. Browse to http://{host-ip}:<Frontend external port> to access the web interface."
}
],
"logo": "https://www.zigbee2mqtt.io/logo.png",
"name": "Zigbee2MQTT",
"platform": "linux",
"repository": {
"stackfile": "Stack/Zigbee2MQTT/zigbee2mqtt.yml",
"url": "https://github.com/RAKWireless/portainer-templates"
},
"title": "Zigbee2MQTT",
"network": "bridge",
"type": 3
},
{
"categories": [
"File Sync & Share"
],
"description": "Seafile is an open source file sync&share solution designed for high reliability, performance and productivity.",
"post_up_info": "Browse to http://{host-ip}:80 to access the web interface. HTTPS is not enabled by default.\nAfter login, please go to System admin on top right, then navigate to Settings, and change the FILE_SERVER_ROOT URL to http://{host-ip}/seafhttp.\nCheck https://manual.seafile.com/docker/deploy_seafile_with_docker/ for Seafile Community Installation Guide.",
"note": "Browse to <a href='http://{host-ip}:<80'>http://{host-ip}:80</a> to access the web interface. HTTPS is not enabled by default.<br>After login, please go to <b>System admin</b> on top right, then navigate to <b>Settings</b>, and change the <b>FILE_SERVER_ROOT</b> URL to http://{host-ip}/seafhttp.<br>Check <a href='https://manual.seafile.com/docker/deploy_seafile_with_docker/'>Seafile Community Installation Guide</a> for more details.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"default": "db_dev",
"label": "MySQL service's root password for the service called db",
"name": "MYSQL_ROOT_PASSWORD",
"description": "Required, must be the same with password for service named seafile"
},
{
"default": "db_dev",
"label": "MySQL service's root password for the service named seafile",
"name": "DB_ROOT_PASSWORD",
"description": "Required, must be the same with password for the service called db"
},
{
"default": "[email protected]",
"label": "Seafile admin user email",
"name": "SEAFILE_ADMIN_EMAIL",
"description": "Specifies Seafile admin user, default is '[email protected]'."
},
{
"default": "changeme",
"label": "Seafile admin user password",
"name": "SEAFILE_ADMIN_PASSWORD",
"description": "Seafile admin password, default is 'changeme'"
},
{
"default": "false",
"label": "Whether to use https or not",
"name": "SEAFILE_SERVER_LETSENCRYPT",
"description": "Whether to use https or not. If https is enabled, please publish port 443 manually",
"select": [
{
"text": "Enable",
"value": "true"
},
{
"text": "Disable",
"value": "false"
}
]
},
{
"default": "docs.seafile.com",
"label": "Seafile Server_HOSTNAME",
"name": "SEAFILE_SERVER_HOSTNAME",
"description": "Specifies your host name if https is enabled."
}
],
"logo": "https://manual.seafile.com/media/seafile-transparent-1024.png",
"name": "Seafile",
"platform": "linux",
"repository": {
"stackfile": "Stack/Seafile/seafile.yml",
"url": "https://github.com/RAKWireless/portainer-templates"
},
"title": "Seafile",
"type": 3
},
{
"categories": [
"VPN"
],
"description": "Tailscale is a zero config VPN. It can be Installed on any device in minutes, it manages firewall rules for users, and works from anywhere. ",
"post_up_info": "Create an account at https://tailscale.com/ first, and then check https://tailscale.com/kb/1085/auth-keys/ for Tailscale's official documentation on how to generate an authkey.\nCopy the key and fill in to the TS_AUTH_KEY variable provided, and then deploy the service",
"note": "Create an account at <a href='https://tailscale.com/'>Tailscale</a> first, and then check <a href='https://tailscale.com/kb/1085/auth-keys/'>Tailscale's official documentation</a> on how to generate an authkey.<br>Copy the key and fill in to the <b>TS_AUTH_KEY</b> variable below, and then deploy the service",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{