· 5 years ago · Oct 17, 2020, 05:10 AM
1{
2 "version": "2",
3 "templates": [{
4 "type": 1,
5 "title": "Registry",
6 "description": "Docker image registry",
7 "categories": [
8 "docker"
9 ],
10 "platform": "linux",
11 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
12 "image": "registry:latest",
13 "ports": [
14 "5000/tcp"
15 ],
16 "volumes": [{
17 "container": "/var/lib/registry"
18 }]
19 },
20 {
21 "type": 1,
22 "title": "Nginx",
23 "description": "High performance web server",
24 "categories": [
25 "webserver"
26 ],
27 "platform": "linux",
28 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/nginx.png",
29 "image": "nginx:latest",
30 "ports": [
31 "80/tcp",
32 "443/tcp"
33 ],
34 "volumes": [{
35 "container": "/etc/nginx"
36 },
37 {
38 "container": "/usr/share/nginx/html"
39 }
40 ]
41 },
42 {
43 "type": 1,
44 "title": "Httpd",
45 "description": "Open-source HTTP server",
46 "categories": [
47 "webserver"
48 ],
49 "platform": "linux",
50 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/httpd.png",
51 "image": "httpd:latest",
52 "ports": [
53 "80/tcp"
54 ],
55 "volumes": [{
56 "container": "/usr/local/apache2/htdocs/"
57 }]
58 },
59 {
60 "type": 1,
61 "title": "Caddy",
62 "description": "HTTP/2 web server with automatic HTTPS",
63 "categories": [
64 "webserver"
65 ],
66 "platform": "linux",
67 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
68 "image": "abiosoft/caddy:latest",
69 "ports": [
70 "80/tcp",
71 "443/tcp",
72 "2015/tcp"
73 ],
74 "volumes": [{
75 "container": "/root/.caddy"
76 }]
77 },
78 {
79 "type": 1,
80 "title": "MySQL",
81 "description": "The most popular open-source database",
82 "categories": [
83 "database"
84 ],
85 "platform": "linux",
86 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
87 "image": "mysql:latest",
88 "env": [{
89 "name": "MYSQL_ROOT_PASSWORD",
90 "label": "Root password"
91 }],
92 "ports": [
93 "3306/tcp"
94 ],
95 "volumes": [{
96 "container": "/var/lib/mysql"
97 }]
98 },
99 {
100 "type": 1,
101 "title": "MariaDB",
102 "description": "Performance beyond MySQL",
103 "categories": [
104 "database"
105 ],
106 "platform": "linux",
107 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mariadb.png",
108 "image": "mariadb:latest",
109 "env": [{
110 "name": "MYSQL_ROOT_PASSWORD",
111 "label": "Root password"
112 }],
113 "ports": [
114 "3306/tcp"
115 ],
116 "volumes": [{
117 "container": "/var/lib/mysql"
118 }]
119 },
120 {
121 "type": 1,
122 "title": "PostgreSQL",
123 "description": "The most advanced open-source database",
124 "categories": [
125 "database"
126 ],
127 "platform": "linux",
128 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
129 "image": "postgres:latest",
130 "env": [{
131 "name": "POSTGRES_USER",
132 "label": "Superuser"
133 },
134 {
135 "name": "POSTGRES_PASSWORD",
136 "label": "Superuser password"
137 }
138 ],
139 "ports": [
140 "5432/tcp"
141 ],
142 "volumes": [{
143 "container": "/var/lib/postgresql/data"
144 }]
145 },
146 {
147 "type": 1,
148 "title": "Mongo",
149 "description": "Open-source document-oriented database",
150 "categories": [
151 "database"
152 ],
153 "platform": "linux",
154 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
155 "image": "mongo:latest",
156 "ports": [
157 "27017/tcp"
158 ],
159 "volumes": [{
160 "container": "/data/db"
161 }]
162 },
163 {
164 "type": 1,
165 "title": "CockroachDB",
166 "description": "An open-source, survivable, strongly consistent, scale-out SQL database",
167 "categories": [
168 "database"
169 ],
170 "platform": "linux",
171 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
172 "image": "cockroachdb/cockroach:latest",
173 "ports": [
174 "26257/tcp",
175 "8080/tcp"
176 ],
177 "volumes": [{
178 "container": "/cockroach/cockroach-data"
179 }],
180 "command": "start --insecure"
181 },
182 {
183 "type": 1,
184 "title": "CrateDB",
185 "description": "An open-source distributed SQL database",
186 "categories": [
187 "database"
188 ],
189 "platform": "linux",
190 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cratedb.png",
191 "image": "crate:latest",
192 "ports": [
193 "4200/tcp",
194 "4300/tcp"
195 ],
196 "volumes": [{
197 "container": "/data"
198 }]
199 },
200 {
201 "type": 1,
202 "title": "Elasticsearch",
203 "description": "Open-source search and analytics engine",
204 "categories": [
205 "database"
206 ],
207 "platform": "linux",
208 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/elasticsearch.png",
209 "image": "elasticsearch:latest",
210 "ports": [
211 "9200/tcp",
212 "9300/tcp"
213 ],
214 "volumes": [{
215 "container": "/usr/share/elasticsearch/data"
216 }]
217 },
218 {
219 "type": 1,
220 "title": "Gitlab CE",
221 "description": "Open-source end-to-end software development platform",
222 "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
223 "categories": [
224 "development",
225 "project-management"
226 ],
227 "platform": "linux",
228 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
229 "image": "gitlab/gitlab-ce:latest",
230 "ports": [
231 "80/tcp",
232 "443/tcp",
233 "22/tcp"
234 ],
235 "volumes": [{
236 "container": "/etc/gitlab"
237 },
238 {
239 "container": "/var/log/gitlab"
240 },
241 {
242 "container": "/var/opt/gitlab"
243 }
244 ]
245 },
246 {
247 "type": 1,
248 "title": "Minio",
249 "description": "A distributed object storage server built for cloud applications and devops",
250 "categories": [
251 "storage"
252 ],
253 "platform": "linux",
254 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/minio.png",
255 "image": "minio/minio:latest",
256 "ports": [
257 "9000/tcp"
258 ],
259 "env": [{
260 "name": "MINIO_ACCESS_KEY",
261 "label": "Minio access key"
262 },
263 {
264 "name": "MINIO_SECRET_KEY",
265 "label": "Minio secret key"
266 }
267 ],
268 "volumes": [{
269 "container": "/data"
270 },
271 {
272 "container": "/root/.minio"
273 }
274 ],
275 "command": "server /data"
276 },
277 {
278 "type": 1,
279 "title": "Scality S3",
280 "description": "Standalone AWS S3 protocol server",
281 "categories": [
282 "storage"
283 ],
284 "platform": "linux",
285 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/scality-s3.png",
286 "image": "scality/s3server",
287 "ports": [
288 "8000/tcp"
289 ],
290 "env": [{
291 "name": "SCALITY_ACCESS_KEY",
292 "label": "Scality S3 access key"
293 },
294 {
295 "name": "SCALITY_SECRET_KEY",
296 "label": "Scality S3 secret key"
297 }
298 ],
299 "volumes": [{
300 "container": "/usr/src/app/localData"
301 },
302 {
303 "container": "/usr/src/app/localMetadata"
304 }
305 ]
306 },
307 {
308 "type": 1,
309 "title": "SQL Server",
310 "description": "Microsoft SQL Server on Linux",
311 "categories": [
312 "database"
313 ],
314 "platform": "linux",
315 "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
316 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
317 "image": "microsoft/mssql-server-linux:2017-GA",
318 "ports": [
319 "1433/tcp"
320 ],
321 "env": [{
322 "name": "ACCEPT_EULA",
323 "set": "Y"
324 },
325 {
326 "name": "SA_PASSWORD",
327 "label": "SA password"
328 }
329 ]
330 },
331 {
332 "type": 1,
333 "title": "SQL Server",
334 "description": "Microsoft SQL Server Developer for Windows containers",
335 "categories": [
336 "database"
337 ],
338 "platform": "windows",
339 "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
340 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
341 "image": "microsoft/mssql-server-windows-developer:latest",
342 "ports": [
343 "1433/tcp"
344 ],
345 "env": [{
346 "name": "ACCEPT_EULA",
347 "set": "Y"
348 },
349 {
350 "name": "sa_password",
351 "label": "SA password"
352 }
353 ],
354 "volumes": [{
355 "container": "C:/temp/"
356 }]
357 },
358 {
359 "type": 1,
360 "title": "SQL Server Express",
361 "description": "Microsoft SQL Server Express for Windows containers",
362 "categories": [
363 "database"
364 ],
365 "platform": "windows",
366 "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
367 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
368 "image": "microsoft/mssql-server-windows-express:latest",
369 "ports": [
370 "1433/tcp"
371 ],
372 "env": [{
373 "name": "ACCEPT_EULA",
374 "set": "Y"
375 },
376 {
377 "name": "sa_password",
378 "label": "SA password"
379 }
380 ],
381 "volumes": [{
382 "container": "C:/temp/"
383 }]
384 },
385 {
386 "type": 1,
387 "title": "IronFunctions API",
388 "description": "Open-source serverless computing platform",
389 "categories": [
390 "serverless"
391 ],
392 "platform": "linux",
393 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
394 "image": "iron/functions:latest",
395 "ports": [
396 "8080/tcp"
397 ],
398 "volumes": [{
399 "container": "/app/data"
400 }],
401 "privileged": true
402 },
403 {
404 "type": 1,
405 "title": "IronFunctions UI",
406 "description": "Open-source user interface for IronFunctions",
407 "categories": [
408 "serverless"
409 ],
410 "platform": "linux",
411 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
412 "image": "iron/functions-ui:latest",
413 "ports": [
414 "4000/tcp"
415 ],
416 "volumes": [{
417 "container": "/app/data"
418 }],
419 "env": [{
420 "name": "API_URL",
421 "label": "API URL"
422 }],
423 "privileged": true
424 },
425 {
426 "type": 1,
427 "title": "Solr",
428 "description": "Open-source enterprise search platform",
429 "categories": [
430 "search-engine"
431 ],
432 "platform": "linux",
433 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/solr.png",
434 "image": "solr:latest",
435 "ports": [
436 "8983/tcp"
437 ],
438 "volumes": [{
439 "container": "/opt/solr/mydata"
440 }]
441 },
442 {
443 "type": 1,
444 "title": "Redis",
445 "description": "Open-source in-memory data structure store",
446 "categories": [
447 "database"
448 ],
449 "platform": "linux",
450 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
451 "image": "redis:latest",
452 "ports": [
453 "6379/tcp"
454 ],
455 "volumes": [{
456 "container": "/data"
457 }]
458 },
459 {
460 "type": 1,
461 "title": "RabbitMQ",
462 "description": "Highly reliable enterprise messaging system",
463 "categories": [
464 "messaging"
465 ],
466 "platform": "linux",
467 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/rabbitmq.png",
468 "image": "rabbitmq:latest",
469 "ports": [
470 "5671/tcp",
471 "5672/tcp"
472 ],
473 "volumes": [{
474 "container": "/var/lib/rabbitmq"
475 }]
476 },
477 {
478 "type": 1,
479 "title": "Ghost",
480 "description": "Free and open-source blogging platform",
481 "categories": [
482 "blog"
483 ],
484 "note": "Access the blog management interface under <code>/ghost/</code>.",
485 "platform": "linux",
486 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ghost.png",
487 "image": "ghost:latest",
488 "ports": [
489 "2368/tcp"
490 ],
491 "volumes": [{
492 "container": "/var/lib/ghost/content"
493 }]
494 },
495 {
496 "type": 1,
497 "title": "Plesk",
498 "description": "WebOps platform and hosting control panel",
499 "categories": [
500 "CMS"
501 ],
502 "platform": "linux",
503 "note": "Default credentials: admin / changeme",
504 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plesk.png",
505 "image": "plesk/plesk:latest",
506 "ports": [
507 "21/tcp",
508 "80/tcp",
509 "443/tcp",
510 "8880/tcp",
511 "8443/tcp",
512 "8447/tcp"
513 ]
514 },
515 {
516 "type": 1,
517 "title": "Joomla",
518 "description": "Another free and open-source CMS",
519 "categories": [
520 "CMS"
521 ],
522 "platform": "linux",
523 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/joomla.png",
524 "image": "joomla:latest",
525 "env": [{
526 "name": "JOOMLA_DB_HOST",
527 "label": "MySQL database host",
528 "type": "container"
529 },
530 {
531 "name": "JOOMLA_DB_PASSWORD",
532 "label": "Database password"
533 }
534 ],
535 "ports": [
536 "80/tcp"
537 ],
538 "volumes": [{
539 "container": "/var/www/html"
540 }]
541 },
542 {
543 "type": 1,
544 "title": "Drupal",
545 "description": "Open-source content management framework",
546 "categories": [
547 "CMS"
548 ],
549 "platform": "linux",
550 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/drupal.png",
551 "image": "drupal:latest",
552 "ports": [
553 "80/tcp"
554 ],
555 "volumes": [{
556 "container": "/var/www/html"
557 }]
558 },
559 {
560 "type": 1,
561 "title": "Plone",
562 "description": "A free and open-source CMS built on top of Zope",
563 "categories": [
564 "CMS"
565 ],
566 "platform": "linux",
567 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plone.png",
568 "image": "plone:latest",
569 "ports": [
570 "8080/tcp"
571 ],
572 "volumes": [{
573 "container": "/data"
574 }]
575 },
576 {
577 "type": 1,
578 "title": "Magento 2",
579 "description": "Open-source e-commerce platform",
580 "categories": [
581 "CMS"
582 ],
583 "platform": "linux",
584 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/magento.png",
585 "image": "alankent/gsd:latest",
586 "ports": [
587 "80/tcp",
588 "3000/tcp",
589 "3001/tcp"
590 ],
591 "volumes": [{
592 "container": "/var/www/html/"
593 }]
594 },
595 {
596 "type": 1,
597 "title": "Sematext Docker Agent",
598 "description": "Collect logs, metrics and docker events",
599 "categories": [
600 "Log Management",
601 "Monitoring"
602 ],
603 "platform": "linux",
604 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
605 "image": "sematext/sematext-agent-docker:latest",
606 "name": "sematext-agent",
607 "privileged": true,
608 "env": [{
609 "name": "LOGSENE_TOKEN",
610 "label": "Logs token"
611 },
612 {
613 "name": "SPM_TOKEN",
614 "label": "SPM monitoring token"
615 }
616 ],
617 "volumes": [{
618 "container": "/var/run/docker.sock",
619 "bind": "/var/run/docker.sock"
620 }]
621 },
622 {
623 "type": 1,
624 "title": "Datadog agent",
625 "description": "Collect events and metrics",
626 "categories": [
627 "Monitoring"
628 ],
629 "platform": "linux",
630 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
631 "image": "datadog/agent:latest",
632 "env": [{
633 "name": "DD_API_KEY",
634 "label": "Datadog API key"
635 }],
636 "volumes": [{
637 "container": "/var/run/docker.sock",
638 "bind": "/var/run/docker.sock",
639 "readonly": true
640 },
641 {
642 "container": "/host/sys/fs/cgroup",
643 "bind": "/sys/fs/cgroup",
644 "readonly": true
645 },
646 {
647 "container": "/host/proc",
648 "bind": "/proc",
649 "readonly": true
650 }
651 ]
652 },
653 {
654 "type": 1,
655 "title": "Mautic",
656 "description": "Open-source marketing automation platform",
657 "categories": [
658 "marketing"
659 ],
660 "platform": "linux",
661 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
662 "image": "mautic/mautic:latest",
663 "env": [{
664 "name": "MAUTIC_DB_HOST",
665 "label": "MySQL database host",
666 "type": "container"
667 },
668 {
669 "name": "MAUTIC_DB_PASSWORD",
670 "label": "Database password"
671 }
672 ],
673 "ports": [
674 "80/tcp"
675 ],
676 "volumes": [{
677 "container": "/var/www/html"
678 }]
679 },
680 {
681 "type": 1,
682 "title": "Wowza",
683 "description": "Streaming media server",
684 "categories": [
685 "streaming"
686 ],
687 "platform": "linux",
688 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wowza.png",
689 "image": "sameersbn/wowza:4.1.2-8",
690 "env": [{
691 "name": "WOWZA_ACCEPT_LICENSE",
692 "label": "Agree to Wowza EULA",
693 "set": "yes"
694 },
695 {
696 "name": "WOWZA_KEY",
697 "label": "License key"
698 }
699 ],
700 "ports": [
701 "1935/tcp",
702 "8086/tcp",
703 "8087/tcp",
704 "8088/tcp"
705 ],
706 "volumes": [{
707 "container": "/var/lib/wowza"
708 }]
709 },
710 {
711 "type": 1,
712 "title": "Jenkins",
713 "description": "Open-source continuous integration tool",
714 "categories": [
715 "continuous-integration"
716 ],
717 "platform": "linux",
718 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
719 "image": "jenkins/jenkins:lts",
720 "ports": [
721 "8080/tcp",
722 "50000/tcp"
723 ],
724 "env": [{
725 "name": "JENKINS_OPTS",
726 "label": "Jenkins options"
727 }],
728 "volumes": [{
729 "container": "/var/jenkins_home"
730 }]
731 },
732 {
733 "type": 1,
734 "title": "Redmine",
735 "description": "Open-source project management tool",
736 "categories": [
737 "project-management"
738 ],
739 "platform": "linux",
740 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redmine.png",
741 "image": "redmine:latest",
742 "ports": [
743 "3000/tcp"
744 ],
745 "volumes": [{
746 "container": "/usr/src/redmine/files"
747 }]
748 },
749 {
750 "type": 1,
751 "title": "Odoo",
752 "description": "Open-source business apps",
753 "categories": [
754 "project-management"
755 ],
756 "platform": "linux",
757 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/odoo.png",
758 "image": "odoo:latest",
759 "env": [{
760 "name": "HOST",
761 "label": "PostgreSQL database host",
762 "type": "container"
763 },
764 {
765 "name": "USER",
766 "label": "Database user"
767 },
768 {
769 "name": "PASSWORD",
770 "label": "Database password"
771 }
772 ],
773 "ports": [
774 "8069/tcp"
775 ],
776 "volumes": [{
777 "container": "/var/lib/odoo"
778 },
779 {
780 "container": "/mnt/extra-addons"
781 }
782 ]
783 },
784 {
785 "type": 1,
786 "title": "Urbackup",
787 "description": "Open-source network backup",
788 "categories": [
789 "backup"
790 ],
791 "platform": "linux",
792 "note": "This application web interface is exposed on the port 55414 inside the container.",
793 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/urbackup.png",
794 "image": "cfstras/urbackup",
795 "ports": [
796 "55413/tcp",
797 "55414/tcp",
798 "55415/tcp",
799 "35622/tcp"
800 ],
801 "volumes": [{
802 "container": "/var/urbackup"
803 }]
804 },
805 {
806 "type": 1,
807 "title": "File browser",
808 "description": "A web file manager",
809 "note": "Default credentials: admin/admin",
810 "categories": [
811 "filesystem",
812 "storage"
813 ],
814 "platform": "linux",
815 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/filebrowser.png",
816 "image": "filebrowser/filebrowser:latest",
817 "ports": [
818 "80/tcp"
819 ],
820 "volumes": [{
821 "container": "/data"
822 },
823 {
824 "container": "/srv"
825 }
826 ],
827 "command": "--port 80 --database /data/database.db --root /srv"
828 },
829 {
830 "type": 1,
831 "title": "CommandBox",
832 "description": "ColdFusion (CFML) CLI",
833 "categories": [
834 "development"
835 ],
836 "platform": "linux",
837 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-commandbox.png",
838 "image": "ortussolutions/commandbox:latest",
839 "env": [{
840 "name": "CFENGINE",
841 "set": "lucee@4.5"
842 }],
843 "ports": [
844 "8080/tcp",
845 "8443/tcp"
846 ]
847 },
848 {
849 "type": 1,
850 "title": "ContentBox",
851 "description": "Open-source modular CMS",
852 "categories": [
853 "CMS"
854 ],
855 "platform": "linux",
856 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-contentbox.png",
857 "image": "ortussolutions/contentbox:latest",
858 "env": [{
859 "name": "express",
860 "set": "true"
861 },
862 {
863 "name": "install",
864 "set": "true"
865 },
866 {
867 "name": "CFENGINE",
868 "set": "lucee@4.5"
869 }
870 ],
871 "ports": [
872 "8080/tcp",
873 "8443/tcp"
874 ],
875 "volumes": [{
876 "container": "/data/contentbox/db"
877 },
878 {
879 "container": "/app/includes/shared/media"
880 }
881 ]
882 },
883 {
884 "type": 2,
885 "title": "Portainer Agent",
886 "description": "Manage all the resources in your Swarm cluster",
887 "note": "The agent will be deployed globally inside your cluster and available on port 9001.",
888 "categories": [
889 "portainer"
890 ],
891 "platform": "linux",
892 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/portainer.png",
893 "repository": {
894 "url": "https://github.com/portainer/templates",
895 "stackfile": "stacks/portainer-agent/docker-stack.yml"
896 }
897 },
898 {
899 "type": 2,
900 "title": "OpenFaaS",
901 "name": "func",
902 "description": "Serverless functions made simple",
903 "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'.",
904 "categories": [
905 "serverless"
906 ],
907 "platform": "linux",
908 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
909 "repository": {
910 "url": "https://github.com/openfaas/faas",
911 "stackfile": "docker-compose.yml"
912 }
913 },
914 {
915 "type": 2,
916 "title": "IronFunctions",
917 "description": "Open-source serverless computing platform",
918 "note": "Deploys the IronFunctions API and UI.",
919 "categories": [
920 "serverless"
921 ],
922 "platform": "linux",
923 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
924 "repository": {
925 "url": "https://github.com/portainer/templates",
926 "stackfile": "stacks/ironfunctions/docker-stack.yml"
927 }
928 },
929 {
930 "type": 2,
931 "title": "CockroachDB",
932 "description": "CockroachDB cluster",
933 "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
934 "categories": [
935 "database"
936 ],
937 "platform": "linux",
938 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
939 "repository": {
940 "url": "https://github.com/portainer/templates",
941 "stackfile": "stacks/cockroachdb/docker-stack.yml"
942 }
943 },
944 {
945 "type": 2,
946 "title": "Wordpress",
947 "description": "Wordpress setup with a MySQL database",
948 "note": "Deploys a Wordpress instance connected to a MySQL database.",
949 "categories": [
950 "CMS"
951 ],
952 "platform": "linux",
953 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
954 "repository": {
955 "url": "https://github.com/portainer/templates",
956 "stackfile": "stacks/wordpress/docker-stack.yml"
957 },
958 "env": [{
959 "name": "MYSQL_DATABASE_PASSWORD",
960 "label": "Database root password",
961 "description": "Password used by the MySQL root user."
962 }]
963 },
964 {
965 "type": 3,
966 "title": "Wordpress",
967 "description": "Wordpress setup with a MySQL database",
968 "note": "Deploys a Wordpress instance connected to a MySQL database.",
969 "categories": [
970 "CMS"
971 ],
972 "platform": "linux",
973 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
974 "repository": {
975 "url": "https://github.com/portainer/templates",
976 "stackfile": "stacks/wordpress/docker-compose.yml"
977 },
978 "env": [{
979 "name": "MYSQL_DATABASE_PASSWORD",
980 "label": "Database root password",
981 "description": "Password used by the MySQL root user."
982 }]
983 },
984 {
985 "type": 2,
986 "title": "Microsoft OMS Agent",
987 "description": "Microsoft Operations Management Suite Linux agent.",
988 "categories": [
989 "OPS"
990 ],
991 "platform": "linux",
992 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
993 "repository": {
994 "url": "https://github.com/portainer/templates",
995 "stackfile": "stacks/microsoft-oms/docker-stack.yml"
996 },
997 "env": [{
998 "name": "AZURE_WORKSPACE_ID",
999 "label": "Workspace ID",
1000 "description": "Azure Workspace ID"
1001 },
1002 {
1003 "name": "AZURE_PRIMARY_KEY",
1004 "label": "Primary key",
1005 "description": "Azure primary key"
1006 }
1007 ]
1008 },
1009 {
1010 "title": "Sematext Docker Agent",
1011 "type": 2,
1012 "categories": [
1013 "Log Management",
1014 "Monitoring"
1015 ],
1016 "description": "Collect logs, metrics and docker events",
1017 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
1018 "platform": "linux",
1019 "repository": {
1020 "url": "https://github.com/portainer/templates",
1021 "stackfile": "stacks/sematext-agent-docker/docker-stack.yml"
1022 },
1023 "env": [{
1024 "name": "LOGSENE_TOKEN",
1025 "label": "Logs token"
1026 },
1027 {
1028 "name": "SPM_TOKEN",
1029 "label": "SPM monitoring token"
1030 }
1031 ]
1032 },
1033 {
1034 "title": "Datadog agent",
1035 "type": 2,
1036 "categories": [
1037 "Monitoring"
1038 ],
1039 "description": "Collect events and metrics",
1040 "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
1041 "platform": "linux",
1042 "repository": {
1043 "url": "https://github.com/portainer/templates",
1044 "stackfile": "stacks/datadog-agent/docker-stack.yml"
1045 },
1046 "env": [{
1047 "name": "API_KEY",
1048 "label": "Datadog API key"
1049 }]
1050 },
1051 {
1052 "type": 4,
1053 "title": "Wordpress",
1054 "description": "Wordpress setup with a MySQL database",
1055 "note": "Deploys a Wordpress instance connected to a MySQL database.",
1056 "stackfile": "https://raw.githubusercontent.com/portainer/templates/master/stacks/wordpress/edge/docker-stack.yml"
1057 },
1058 {
1059 "type": 4,
1060 "title": "CockroachDB",
1061 "description": "CockroachDB cluster",
1062 "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
1063 "stackfile": "https://raw.githubusercontent.com/portainer/templates/master/stacks/cockroachdb/edge/docker-stack.yml"
1064 }
1065 ]
1066}
1067