-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackup.json
1276 lines (1197 loc) · 37.4 KB
/
backup.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",
"templates": [
{
"categories": [
"data","dashboard"
],
"description": "Apache Superset is a Data Visualization and Data Exploration Platform. ",
"image": "apache/superset:latest",
"logo": "https://superset.apache.org/img/favicon.ico",
"platform": "linux",
"ports": [
"8080/tcp"
],
"title": "Apache superset",
"type": 1
},
{
"categories": [
"data","dashboard"
],
"description": "The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.",
"image": "grafana/grafana:latest",
"logo": "https://grafana.com/static/assets/img/fav32.png",
"platform": "linux",
"ports": [
"3000/tcp"
],
"title": "Grafana",
"type": 1
},
{
"categories": [
"code","pipelines"
],
"description": "Build powerful pipelines in any programming language. ",
"image": "gaiapipeline/gaia:latest",
"logo": "https://gist.githubusercontent.com/michelvocks/ef3894f63c3bb004bca1a2fd5f7eb644/raw/40c5799d74a6f28af1874e726083a50a3ebd877d/gaia-logo-text.png",
"platform": "linux",
"ports": [
"8080/tcp"
],
"title": "Gaia pipeline",
"type": 1
},
{
"categories": [
"cms","low-code"
],
"description": "Open source Node.js Headless CMS to easily build customisable APIs.",
"image": "strapi/strapi:latest",
"logo": "https://strapi.io/assets/favicon-32x32.png",
"platform": "linux",
"ports": [
"1337/tcp"
],
"title": "Strapi",
"type": 1
},
{
"categories": [
"coding","datascience"
],
"description": "Base Jupyter Notebook Stack",
"image": "jupyter/base-notebook:latest",
"logo": "https://jupyter-docker-stacks.readthedocs.io/en/latest/_static/jupyter-logo.svg",
"platform": "linux",
"ports": [
"8888/tcp"
],
"title": "Jupyter",
"type": 1
},
{
"categories": [
"database", "low-code"
],
"description": "The Open Source Airtable Alternative 🎃Turns any MySQL, PostgreSQL, SQL Server, SQLite & MariaDB into a smart-spreadsheet. .",
"image": "nocodb/nocodb:latest",
"logo": "https://docs.nocodb.com/favicon-128.png",
"platform": "linux",
"ports": [
"8080/tcp"
],
"title": "NocoDB",
"type": 1,
"volumes": [{
"container": "/home/node/.n8n"
}],
"env": [{
"label": "use a database first",
"name": "NC_DB",
"default": "pg://host:port?u=user&p=password&d=database"
},
{
"label": "secret token",
"name": "NC_AUTH_JWT_SECRET",
"default": "569a1821-0a93-45e8-87ab-eb857f20a010"
}
]
},
{
"categories": [
"workflow", "low-code"
],
"description": "n8n is a free and open fair-code distributed node based Workflow Automation Tool. It can be self-hosted, easily extended, and so also used with internal tools.",
"image": "n8nio/n8n:latest",
"logo": "https://raw.githubusercontent.com/n8n-io/n8n/master/assets/n8n-logo.png",
"platform": "linux",
"ports": [
"5678/tcp"
],
"title": "n8n",
"type": 1,
"volumes": [{
"container": "/home/node/.n8n"
}],
"env": [{
"label": "activate user auth",
"name": "N8N_BASIC_AUTH_ACTIVE"
},
{
"label": "access udername",
"name": "N8N_BASIC_AUTH_USER"
},
{
"label": "access password",
"name": "N8N_BASIC_AUTH_PASSWORD"
}
]
},
{
"categories": [
"workflow", "low-code"
],
"description": "Low-code programming for event-driven applications ",
"image": "nodered/node-red:latest",
"logo": "https://aws1.discourse-cdn.com/business6/uploads/nodered/original/1X/778549404735e222c89ce5449482a189ace8cdae.png",
"platform": "linux",
"ports": [
"1880/tcp"
],
"title": "Node-red",
"type": 1,
"volumes": [{
"container": "/data"
}]
},
{
"categories": [
"database"
],
"description": "The most advanced open-source database",
"env": [{
"label": "Superuser",
"name": "POSTGRES_USER"
},
{
"label": "Superuser password",
"name": "POSTGRES_PASSWORD"
}
],
"image": "postgres:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
"platform": "linux",
"ports": [
"5432/tcp"
],
"title": "PostgreSQL",
"type": 1,
"volumes": [{
"container": "/var/lib/postgresql/data"
}]
},
{
"categories": [
"serverless"
],
"description": "Serverless functions made simple",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
"name": "func",
"note": "Deploys the API gateway and sample functions. You can access the UI on port 8080. <b>Warning</b>: the name of the stack must be 'func'.",
"platform": "linux",
"repository": {
"stackfile": "docker-compose.yml",
"url": "https://github.com/openfaas/faas"
},
"title": "OpenFaaS",
"type": 2
},
{
"categories": [
"database"
],
"description": "Open-source in-memory data structure store",
"image": "redis:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
"platform": "linux",
"ports": [
"6379/tcp"
],
"title": "Redis",
"type": 1,
"volumes": [{
"container": "/data"
}]
},
{
"categories": [
"search-engine"
],
"description": "Open-source enterprise search platform",
"image": "solr:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/solr.png",
"platform": "linux",
"ports": [
"8983/tcp"
],
"title": "Solr",
"type": 1,
"volumes": [{
"container": "/opt/solr/mydata"
}]
},
{
"categories": [
"database"
],
"description": "Microsoft SQL Server on Linux",
"env": [{
"name": "ACCEPT_EULA",
"set": "Y"
},
{
"label": "SA password",
"name": "SA_PASSWORD"
}
],
"image": "microsoft/mssql-server-linux:2017-GA",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
"note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
"platform": "linux",
"ports": [
"1433/tcp"
],
"title": "SQL Server",
"type": 1
},
{
"categories": [
"CMS"
],
"description": "Wordpress setup with a MySQL database",
"env": [{
"description": "Password used by the MySQL root user.",
"label": "Database root password",
"name": "MYSQL_DATABASE_PASSWORD"
}],
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
"note": "Deploys a Wordpress instance connected to a MySQL database.",
"platform": "linux",
"repository": {
"stackfile": "stacks/wordpress/docker-stack.yml",
"url": "https://github.com/mikestraney/portainer-templates"
},
"title": "Wordpress",
"type": 3
},
{
"categories": [
"CMS"
],
"description": "Wordpress setup with a MySQL database",
"env": [{
"description": "Password used by the MySQL root user.",
"label": "Database root password",
"name": "MYSQL_DATABASE_PASSWORD"
}],
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
"note": "Deploys a Wordpress instance connected to a MySQL database.",
"platform": "linux",
"repository": {
"stackfile": "stacks/wordpress/docker-stack.yml",
"url": "https://github.com/mikestraney/portainer-templates"
},
"title": "Wordpress",
"type": 3
},
{
"description": "Wordpress setup with a MySQL database",
"note": "Deploys a Wordpress instance connected to a MySQL database.",
"stackfile": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/stacks/wordpress/edge/docker-stack.yml",
"title": "Wordpress",
"type": 4
},
{
"categories": [
"CMS"
],
"description": "WebOps platform and hosting control panel",
"image": "plesk/plesk:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plesk.png",
"note": "Default credentials: admin / changeme",
"platform": "linux",
"ports": [
"21/tcp",
"80/tcp",
"443/tcp",
"8880/tcp",
"8443/tcp",
"8447/tcp"
],
"title": "Plesk",
"type": 1
},
{
"categories": [
"Other",
"Downloaders"
],
"description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
"image": "tzahi12345/youtubedl-material:latest",
"logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ytdlm.png",
"name": "youtubedl-material",
"platform": "linux",
"ports": [
"17442:17442/tcp"
],
"restart_policy": "unless-stopped",
"title": "YouTubeDL-Material",
"type": 1,
"volumes": [{
"bind": "/portainer/Files/AppData/Config/YTDLM",
"container": "/app/appdata"
},
{
"bind": "/portainer/Files/AppData/Youtube/Video",
"container": "/app/video"
},
{
"bind": "/portainer/Files/AppData/Youtube/Subscriptions",
"container": "/app/subscriptions"
},
{
"bind": "/portainer/Files/AppData/Youtube/Users",
"container": "/app/users"
},
{
"bind": "/portainer/Files/AppData/Youtube/Audio",
"container": "/app/audio"
}
]
},
{
"description": "[Mariadb](https://mariadb.org/) is one of the most popular database servers. Made by the original developers of MySQL.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "ROOT_ACCESS_PASSWORD",
"description": "Set this to root password for installation (minimum 4 characters).",
"label": "MYSQL_ROOT_PASSWORD",
"name": "MYSQL_ROOT_PASSWORD"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
},
{
"default": "USER_DB_NAME",
"description": "Specify the name of a database to be created on image startup.",
"label": "MYSQL_DATABASE",
"name": "MYSQL_DATABASE"
},
{
"default": "MYSQL_USER",
"description": "This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here).",
"label": "MYSQL_USER",
"name": "MYSQL_USER"
},
{
"default": "DATABASE_PASSWORD",
"description": "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters).",
"label": "MYSQL_PASSWORD",
"name": "MYSQL_PASSWORD"
},
{
"default": "http://URL1/your.sql,https://URL2/your.sql",
"description": "Set this to ingest sql files from an http/https endpoint (comma seperated array).",
"label": "REMOTE_SQL",
"name": "REMOTE_SQL"
}
],
"image": "linuxserver/mariadb:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mariadb-git.png",
"name": "Mariadb",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mariadb/config</p>",
"platform": "linux",
"ports": [
"3306:3306/tcp"
],
"restart_policy": "unless-stopped",
"title": "Mariadb",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/mariadb/config",
"container": "/config"
}]
},
{
"description": "[Nextcloud](https://nextcloud.com/) gives you access to all your files wherever you are. Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
}
],
"image": "linuxserver/nextcloud:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nextcloud-icon.png",
"name": "Nextcloud",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nextcloud/config<br>mkdir -p /volume1/docker/nextcloud/data</p>",
"platform": "linux",
"ports": [
"443:443/tcp"
],
"restart_policy": "unless-stopped",
"title": "Nextcloud",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/nextcloud/config",
"container": "/config"
},
{
"bind": "/volume1/docker/nextcloud/data",
"container": "/data"
}
]
},
{
"description": "[Nginx](https://nginx.org/) is a simple webserver with php support. The config files reside in `/config` for easy user customization.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
}
],
"image": "linuxserver/nginx:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nginx-banner.png",
"name": "Nginx",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nginx/config</p>",
"platform": "linux",
"ports": [
"80:80/tcp",
"443:443/tcp"
],
"restart_policy": "unless-stopped",
"title": "Nginx",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/nginx/config",
"container": "/config"
}]
},
{
"categories": [
"webserver"
],
"description": "Open-source HTTP server",
"image": "httpd:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/httpd.png",
"platform": "linux",
"ports": [
"80/tcp"
],
"title": "Httpd",
"type": 1,
"volumes": [{
"container": "/usr/local/apache2/htdocs/"
}]
},
{
"description": "[Syncthing](https://syncthing.net) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
}
],
"image": "linuxserver/syncthing:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syncthing-banner.png",
"name": "Syncthing",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syncthing/config<br>mkdir -p /volume1/docker/syncthing/data1<br>mkdir -p /volume1/docker/syncthing/data2</p>",
"platform": "linux",
"ports": [
"8384:8384/tcp",
"22000:22000/tcp",
"22000:22000/udp",
"21027:21027/udp"
],
"restart_policy": "unless-stopped",
"title": "Syncthing",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/syncthing/config",
"container": "/config"
},
{
"bind": "/volume1/docker/syncthing/data1",
"container": "/data1"
},
{
"bind": "/volume1/docker/syncthing/data2",
"container": "/data2"
}
]
},
{
"categories": [
"Utilities"
],
"description": "[Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
},
{
"default": "/",
"description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`",
"label": "SUBFOLDER",
"name": "SUBFOLDER"
}
],
"image": "linuxserver/webtop:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png",
"name": "Webtop",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webtop/config<br></p>",
"platform": "linux",
"ports": [
"3000:3000/tcp"
],
"privileged": true,
"restart_policy": "unless-stopped",
"title": "Webtop",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/webtop/config",
"container": "/config"
},
{
"bind": "/var/run/docker.sock",
"container": "/var/run/docker.sock"
}
]
},
{
"description": "[Wireshark](https://www.wireshark.org/) is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
}
],
"image": "linuxserver/wireshark:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/wireshark-icon.png",
"name": "Wireshark",
"network": "host",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireshark/config</p>",
"platform": "linux",
"ports": [
"3000:3000/tcp"
],
"restart_policy": "unless-stopped",
"title": "Wireshark",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/wireshark/config",
"container": "/config"
}]
},
{
"category": [
"Other"
],
"description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
"env": [{
"label": "INTERFACE",
"name": "INTERFACE",
"set": "eth0"
},
{
"label": "PGID",
"name": "PGID",
"set": "1000"
},
{
"label": "PUID",
"name": "PUID",
"set": "1000"
},
{
"label": "TZ",
"name": "TZ",
"set": "America/Chicago"
}
],
"image": "linuxserver/openvpn-as:latest",
"logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/openvpn-as-icon.png",
"platform": "linux",
"ports": [
"943/tcp",
"9443/tcp",
"1194/udp"
],
"title": "openvpn-as",
"type": 1,
"volumes": [{
"container": "/config"
}]
},
{
"description": "[Openvscode-server](https://github.com/gitpod-io/openvscode-server) provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser.",
"env": [{
"default": "1024",
"description": "for GroupID",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"description": "for UserID",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/Amsterdam",
"description": "Specify a timezone to use for example Europe/Amsterdam",
"label": "TZ",
"name": "TZ"
},
{
"default": "supersecrettoken",
"description": "Optional security token for accessing the Web UI.",
"label": "CONNECTION_TOKEN",
"name": "CONNECTION_TOKEN"
},
{
"default": "",
"description": "Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`.",
"label": "CONNECTION_SECRET",
"name": "CONNECTION_SECRET"
},
{
"default": "password",
"description": "If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password.",
"label": "SUDO_PASSWORD",
"name": "SUDO_PASSWORD"
},
{
"default": "",
"description": "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`.",
"label": "SUDO_PASSWORD_HASH",
"name": "SUDO_PASSWORD_HASH"
}
],
"image": "linuxserver/openvscode-server:latest",
"logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/openvscode-server-logo.png",
"name": "Openvscode-server",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openvscode-server/config</p>",
"platform": "linux",
"ports": [
"3000:3000/tcp"
],
"restart_policy": "unless-stopped",
"title": "Openvscode-server",
"type": 1,
"volumes": [{
"bind": "/volume1/docker/openvscode-server/config",
"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/Qballjos/portainer_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": [
"continuous-integration"
],
"description": "Open-source continuous integration tool",
"env": [{
"label": "Jenkins options",
"name": "JENKINS_OPTS"
}],
"image": "jenkins/jenkins:lts",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
"platform": "linux",
"ports": [
"8080/tcp",
"50000/tcp"
],
"title": "Jenkins",
"type": 1,
"volumes": [{
"container": "/var/jenkins_home"
}]
},
{
"categories": [
"marketing"
],
"description": "Open-source marketing automation platform",
"env": [{
"label": "MySQL database host",
"name": "MAUTIC_DB_HOST",
"type": "container"
},
{
"label": "Database password",
"name": "MAUTIC_DB_PASSWORD"
}
],
"image": "mautic/mautic:latest",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
"platform": "linux",
"ports": [
"80/tcp"
],
"title": "Mautic",
"type": 1,
"volumes": [{
"container": "/var/www/html"
}]
},
{
"categories": [
"storage"
],
"description": "Standalone AWS S3 protocol server",
"env": [{
"label": "Scality S3 access key",
"name": "SCALITY_ACCESS_KEY"
},
{
"label": "Scality S3 secret key",
"name": "SCALITY_SECRET_KEY"
}
],
"image": "scality/s3server",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/scality-s3.png",
"platform": "linux",
"ports": [
"8000/tcp"
],
"title": "Scality S3",
"type": 1,
"volumes": [{
"container": "/usr/src/app/localData"
},
{
"container": "/usr/src/app/localMetadata"
}
]
},
{
"categories": [
"Other",
"Music"
],
"description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
"image": "registry.gitlab.com/bockiii/deemix-docker",
"logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/deemix.png",
"name": "deemix",
"note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to \u003ca href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'\u003ethis page\u003c/a\u003e for userToken details.",
"platform": "linux",
"ports": [
"9666:9666/tcp"
],
"restart_policy": "unless-stopped",
"title": "DeeMix",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/DeeMix",
"container": "/config"
},
{
"bind": "/portainer/Downloads",
"container": "/downloads"
}
]
},
{
"type": 1,
"title": "Mongo",
"description": "Open-source document-oriented database",
"categories": [
"database"
],
"platform": "linux",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
"image": "mongo:latest",
"ports": [
"27017/tcp"
],
"volumes": [{
"container": "/data/db"
}]
},
{
"type": 1,
"title": "MySQL",
"description": "The most popular open-source database",
"categories": [
"database"
],
"platform": "linux",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
"image": "mysql:latest",
"env": [{
"name": "MYSQL_ROOT_PASSWORD",
"label": "Root password"
}],
"ports": [
"3306/tcp"
],
"volumes": [{
"container": "/var/lib/mysql"