-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates_cookbook.json
1375 lines (1375 loc) · 59.4 KB
/
templates_cookbook.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": "3",
"templates": [
{
"title": "lingva-translate (Cookbook)",
"description": "Alternative front-end for Google Translate, serving as a Free and Open Source translator with over a hundred languages available",
"note": "<a href=\"https://lingva.thedaviddelta.com/\" target=\"_blank\">Lingva Translate</a> pagr.<br>",
"categories": [
"Web",
"Tool",
"Database",
"Cookbook"
],
"platform": "linux",
"name": "lingva",
"hostname": "lingva",
"container_name": "lingva",
"image": "thedaviddelta/lingva-translate:latest",
"ports": [
"3000:3000/tcp"
],
"restart_policy": "always",
"env": [
{
"name": "site_domain",
"label": "site_domain",
"description": "Site domain.",
"default": "lingva.ml"
},
{
"name": "force_default_theme",
"label": "force_default_theme",
"description": "Force default theme.",
"default": "light"
},
{
"name": "default_source_lang",
"label": "default_source_lang",
"description": "Default source language.",
"default": "auto"
},
{
"name": "default_target_lang",
"label": "default_target_lang",
"description": "Default target language.",
"default": "en"
}
],
"labels": [
{
"name": "traefik.enable",
"value": "true"
},
{
"name": "traefik.docker.network",
"value": "traefik"
},
{
"name": "traefik.http.routers.lingva.rule",
"value": "HostRegexp(`^lingva\\..*`)"
},
{
"name": "traefik.http.routers.lingva.service",
"value": "lingva-s"
},
{
"name": "traefik.http.routers.lingva.entryPoints",
"value": "web"
},
{
"name": "traefik.http.services.lingva-s.loadbalancer.server.port",
"value": "3000"
},
{
"name": "traefik.http.services.lingva-s.loadbalancer.sticky.cookie.name",
"value": "stickycookie"
},
{
"name": "traefik.http.services.lingva-s.loadbalancer.sticky.cookie.secure",
"value": "true"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/containers/lingva-translate/None"
},
"type": 1,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/lingva-translate.png",
"id": 1
},
{
"title": "Cloudbeaver (Cookbook)",
"description": "Cloud Database Manager - Community Edition",
"note": "Cloud Database Manager - Community Edition.<br> <br> CloudBeaver is a web server which provides rich web interface. Server itself is a Java application, web part is written on TypeScript and React.<br> It is free to use and open-source (licensed under Apache 2 license).<br> See out <a href=\"https://github.com/dbeaver/cloudbeaver/wiki\" target=\"_blank\">WIKI</a> for more details.<br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"categories": [
"Web",
"Tool",
"Database",
"Cookbook"
],
"platform": "linux",
"name": "cloudbeaver",
"hostname": "cloudbeaver",
"container_name": "cloudbeaver",
"image": "dbeaver/cloudbeaver:latest",
"ports": [
"8978:8978/tcp"
],
"restart_policy": "always",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
}
],
"volumes": [
{
"container": "/opt/cloudbeaver/workspace",
"bind": "/opt/docker/cloudbeaver/workspace"
}
],
"labels": [
{
"name": "traefik.enable",
"value": "true"
},
{
"name": "traefik.docker.network",
"value": "traefik"
},
{
"name": "traefik.http.routers.cloudbeaver.rule",
"value": "HostRegexp(`^cloudbeaver\\..*`)"
},
{
"name": "traefik.http.routers.cloudbeaver.service",
"value": "cloudbeaver-s"
},
{
"name": "traefik.http.routers.cloudbeaver.entryPoints",
"value": "web"
},
{
"name": "traefik.http.services.cloudbeaver-s.loadbalancer.server.port",
"value": "8978"
},
{
"name": "traefik.http.services.cloudbeaver-s.loadbalancer.sticky.cookie.name",
"value": "stickycookie"
},
{
"name": "traefik.http.services.cloudbeaver-s.loadbalancer.sticky.cookie.secure",
"value": "true"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/containers/cloudbeaver/None"
},
"type": 1,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/cloudbeaver.png",
"id": 2
},
{
"title": "pgadmin (Cookbook)",
"description": "pgadmin",
"note": "<a href=\"https://github.com/pgadmin-org/pgadmin4\" target=\"_blank\">GithHub</a> <a href=\"https://www.pgadmin.org/\" target=\"_blank\">Main Page</a> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"categories": [
"Database",
"Tool",
"Cookbook"
],
"platform": "linux",
"name": "pgadmin",
"hostname": "pgadmin",
"image": "dpage/pgadmin4",
"ports": [
"9080:80/tcp"
],
"network": "bridge",
"restart_policy": "unless-stopped",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "PGADMIN_DEFAULT_EMAIL",
"label": "PGADMIN_DEFAULT_EMAIL",
"description": "Default username to login",
"default": "admin@xample.com"
},
{
"name": "PGADMIN_DEFAULT_PASSWORD",
"description": "PGADMIN_DEFAULT_PASSWORD",
"default": "admin",
"label": "PGADMIN_DEFAULT_PASSWORD"
}
],
"volumes": [
{
"container": "/pgadmin_data",
"bind": "/var/lib/pgadmin"
}
],
"labels": [
{
"name": "traefik.enable",
"value": "true"
},
{
"name": "traefik.docker.network",
"value": "traefik"
},
{
"name": "traefik.http.routers.pgadmin.rule",
"value": "HostRegexp(`^pgadmin\\..*`)"
},
{
"name": "traefik.http.routers.pgadmin.service",
"value": "pgadmin-s"
},
{
"name": "traefik.http.routers.pgadmin.entryPoints",
"value": "web"
},
{
"name": "traefik.http.services.pgadmin-s.loadbalancer.server.port",
"value": "9080"
},
{
"name": "traefik.http.services.pgadmin-s.loadbalancer.sticky.cookie.name",
"value": "stickycookie"
},
{
"name": "traefik.http.services.pgadmin-s.loadbalancer.sticky.cookie.secure",
"value": "true"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/containers/pgadmin/None"
},
"type": 1,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/pgadmin.png",
"id": 3
},
{
"title": "openedai-speech (Cookbook)",
"description": "openedai-speech",
"note": "<a href=\"https://github.com/matatonic/openedai-speech\" target=\"_blank\">GithHub</a> <a href=\"https://github.com/matatonic/openedai-speech/tree/main/config\" target=\"_blank\">Config Files</a> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"categories": [
"AI",
"Tool",
"Cookbook"
],
"platform": "linux",
"name": "openedai-speech",
"hostname": "openedai-speech",
"image": "ghcr.io/matatonic/openedai-speech",
"ports": [
"8000:8000/tcp"
],
"network": "bridge",
"restart_policy": "unless-stopped",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "TTS_HOME",
"default": "voices",
"label": "TTS_HOME"
},
{
"name": "HF_HOME",
"description": "HF_HOME",
"default": "voices",
"label": "HF_HOME"
},
{
"name": "PRELOAD_MODEL",
"label": "PRELOAD_MODEL"
}
],
"volumes": [
{
"container": "/voices",
"bind": "/app/voices"
},
{
"container": "/config",
"bind": "/app/config"
}
],
"labels": [
{
"name": "traefik.enable",
"value": "true"
},
{
"name": "traefik.docker.network",
"value": "traefik"
},
{
"name": "traefik.http.routers.openedai-speech.rule",
"value": "HostRegexp(`^openedai-speech\\..*`)"
},
{
"name": "traefik.http.routers.openedai-speech.service",
"value": "openedai-speech-s"
},
{
"name": "traefik.http.routers.openedai-speech.entryPoints",
"value": "web"
},
{
"name": "traefik.http.services.openedai-speech-s.loadbalancer.server.port",
"value": "8000"
},
{
"name": "traefik.http.services.openedai-speech-s.loadbalancer.sticky.cookie.name",
"value": "stickycookie"
},
{
"name": "traefik.http.services.openedai-speech-s.loadbalancer.sticky.cookie.secure",
"value": "true"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/containers/openedai-speech/None"
},
"type": 1,
"logo": "",
"id": 4
},
{
"title": "Portainer Agent (Cookbook)",
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/swarmStacks/portainer_agent/docker-stack.yml"
},
"name": "portainer-agent",
"categories": [
"Cookbook"
],
"type": 2,
"platform": "linux",
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/portainer_agent.png",
"description": "portainer agent",
"env": [],
"id": 5
},
{
"description": "3 Nodes MinIO Cluster",
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/minio.png",
"note": "Please remember that MINIO_ROOT_PASSWORD needs to have min **8** characters.",
"categories": [
"Database",
"Cookbook"
],
"env": [
{
"name": "MINIO_ROOT_PASSWORD",
"label": "MINIO_ROOT_PASSWORD",
"description": "Password used by the MinIO root user. **It needs to have lenght min 8 characters.**"
}
],
"title": "Minio cluster (Cookbook)",
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/swarmStacks/minio-cluster/docker-stack.yml"
},
"name": "minio-cluster",
"type": 2,
"platform": "linux",
"id": 6
},
{
"title": "Traefik (Cookbook)",
"description": "Traefik v3",
"platform": "linux",
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/swarmStacks/traefik/docker-stack.yml"
},
"name": "traefik",
"categories": [
"Cookbook"
],
"type": 2,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/traefik.png",
"env": [],
"id": 7
},
{
"description": "Windmill is the most popular workflow automation platform for technical teams",
"title": "Windmill (Cookbook)",
"categories": [
"Low Code",
"Automation",
"Cookbook"
],
"platform": "linux",
"name": "Windmill",
"note": "<a href=\"https://www.windmill.dev/\" target=\"_blank\">Windmill Docs</a><br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "windmill",
"description": "Specifies a name for your database or defaults to the POSTGRES_USER value when left blank."
},
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "windmill",
"description": "Specifies a user with superuser privileges and a database with the same name. Postgres uses the default user when this is empty."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "windmill156b3eiGht",
"description": "Password used by the POSTGRES_USER."
},
{
"name": "WM_PORT",
"default": "5678",
"description": "The port to run the windmill server on. Default is 5678.",
"label": "WM_PORT"
},
{
"name": "WM_IMAGE",
"description": "The image to use for the windmill server. Default is ghcr.io/windmill-labs/windmill:main. Default: ghcr.io/windmill-labs/windmill:main",
"select": [
{
"text": "ghcr.io/windmill-labs/windmill:main",
"value": "ghcr.io/windmill-labs/windmill:main",
"default": true
},
{
"text": "ghcr.io/windmill-labs/windmill-ee:main",
"value": "ghcr.io/windmill-labs/windmill-ee:main"
}
],
"label": "WM_IMAGE"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/swarmStacks/windmill/docker-stack.yml"
},
"type": 2,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/windmill.png",
"id": 8
},
{
"description": "2 Nodes MySQL Cluster",
"title": "MySQL Cluster (Cookbook)",
"categories": [
"Database",
"Cookbook"
],
"env": [
{
"name": "MYSQL_ROOT_PASSWORD",
"label": "MYSQL_ROOT_PASSWORD",
"description": "Password used by the MySQL root user."
},
{
"name": "MYSQL_DATABASE",
"label": "MYSQL_DATABASE",
"default": "db",
"description": "Name of the database."
},
{
"name": "MYSQL_ROOT_HOST",
"default": "%",
"preset": true
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/swarmStacks/mysql-cluster/docker-stack.yml"
},
"name": "mysql-cluster",
"type": 2,
"platform": "linux",
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/mysql-cluster.png",
"id": 9
},
{
"description": "Infinitely scalable, event-driven, language-agnostic orchestration and scheduling platform to manage millions of workflows declaratively in code.",
"title": "Kestra (Cookbook)",
"name": "kestra",
"categories": [
"Low Code",
"Cookbook"
],
"platform": "linux",
"note": "<a href=\"https://kestra.io/docs\" target=\"_blank\">Kestra Docs</a><br> <a href=\"https://github.com/kestra-io/kestra\" target=\"_blank\">Kestra Github</a> | Report <a href=\"https://github.com/kestra-io/kestra/issues\" target=\"_blank\">Issue</a><br> <a href=\"https://hub.docker.com/r/kestra/kestra\" target=\"_blank\">Kestra Docker Hub</a><br> <a href=\"https://www.docker.com/blog/how-to-use-the-postgres-docker-official-image/\" target=\"_blank\">Postgres Docker Info</a> <br> <br> <b>Note:</b><br> Remember to create on host tmp folder<br> - mkdir /tmp/kestra-wd/ <br> - chmod -R 0777 /tmp/kestra-wd/ <br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "kestra",
"description": "Specifies a name for your database or defaults to the POSTGRES_USER value when left blank."
},
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "kestra",
"description": "Specifies a user with superuser privileges and a database with the same name. Postgres uses the default user when this is empty."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "k3str4",
"description": "Password used by the POSTGRES_USER."
},
{
"name": "KESTRA_PORT",
"default": "8080",
"description": "Port to expose kestra. Default is 8080.",
"label": "KESTRA_PORT"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/kestra/docker-compose.yml"
},
"type": 3,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/kestra.png",
"id": 10
},
{
"description": "Baserow is an open-source online database that allows you to create tables, forms, and views with a minimal amount of code.",
"title": "Baserow (Cookbook)",
"categories": [
"Low Code",
"Database",
"Cookbook"
],
"platform": "linux",
"name": "baserow",
"note": "<a href=\"https://baserow.io/docs/\" target=\"_blank\">Baserow Docs</a><br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "BASEROW_HTTP_PORT",
"label": "Published HTTP Port",
"description": "The HTTP port for Baserow. Default is 80.",
"default": "80"
},
{
"name": "BASEROW_HTTPS_PORT",
"label": "Published HTTPS Port",
"description": "The HTTPS port for Baserow. Default is 443.",
"default": "443"
},
{
"name": "WEB_FRONTEND_PORT",
"label": "Container HTTP Port",
"description": "The port for the web frontend hosted on container side. Default is 80.",
"default": "80"
},
{
"name": "WEB_FRONTEND_SSL_PORT",
"label": "Container HTTPS Port",
"description": "The port for the web frontend SSL hosted on container side. Default is 443.",
"default": "443"
},
{
"name": "BASEROW_PUBLIC_URL",
"label": "Baserow Public URL",
"description": "The public URL for Baserow. Default is http://localhost.",
"default": "http://localhost"
},
{
"name": "MIGRATE_ON_STARTUP",
"label": "Migrate on Startup",
"description": "Whether to migrate the database on startup. Default is True.",
"select": [
{
"text": "True",
"value": "true",
"default": true
},
{
"text": "False",
"value": "false"
}
]
},
{
"name": "BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION",
"label": "Trigger Sync Templates After Migration",
"description": "Whether to trigger syncing of templates after migration. Default is True.",
"select": [
{
"text": "True",
"value": "true",
"default": true
},
{
"text": "False",
"value": "false"
}
]
},
{
"name": "DATABASE_PASSWORD",
"label": "Database Password",
"description": "The password for the database. Default is baserow.",
"default": "baserow"
},
{
"name": "SECRET_KEY",
"label": "Secret Key",
"description": "The secret key for Baserow. Default is baserow.",
"default": "baserow"
},
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/baserow/docker-compose.yml"
},
"type": 3,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/baserow.png",
"id": 11
},
{
"description": "The world's most popular workflow automation platform for technical teams",
"title": "n8n (Cookbook)",
"categories": [
"Low Code",
"Automation",
"Cookbook"
],
"platform": "linux",
"name": "n8n",
"note": "<a href=\"https://docs.n8n.io/https://docs.n8n.org/\" target=\"_blank\">n8n Docs</a><br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "n8n",
"description": "Specifies a name for your database or defaults to the POSTGRES_USER value when left blank."
},
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "n8n",
"description": "Specifies a user with superuser privileges and a database with the same name. Postgres uses the default user when this is empty."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "n8N13203eiGht",
"description": "Password used by the POSTGRES_USER."
},
{
"name": "N8N_PORT",
"default": "5678",
"description": "The port to run the n8n server on. Default is 5678.",
"label": "N8N_PORT"
},
{
"name": "N8N_ENCRYPTION_KEY",
"description": "Encryption key used to encrypt sensitive data.",
"label": "N8N_ENCRYPTION_KEY"
},
{
"name": "N8N_SECURE_COOKIE",
"description": "Enables or disables secure cookie.",
"select": [
{
"text": "True",
"value": "true"
},
{
"text": "False",
"value": "false",
"default": true
}
],
"label": "N8N_SECURE_COOKIE"
},
{
"name": "N8N_BASIC_AUTH_ACTIVE",
"description": "Enables or disables basic auth.",
"select": [
{
"text": "True",
"value": "true",
"default": true
},
{
"text": "False",
"value": "false"
}
],
"label": "N8N_BASIC_AUTH_ACTIVE"
},
{
"name": "N8N_BASIC_AUTH_USER",
"default": "user",
"description": "Username for basic auth.",
"label": "N8N_BASIC_AUTH_USER"
},
{
"name": "N8N_BASIC_AUTH_PASSWORD",
"default": "password",
"description": "Password for basic auth.",
"label": "N8N_BASIC_AUTH_PASSWORD"
},
{
"name": "N8N_PROTOCOL",
"description": "Protocol used. Default: https",
"select": [
{
"text": "https",
"value": "https",
"default": true
},
{
"text": "http",
"value": "http"
}
],
"label": "N8N_PROTOCOL"
},
{
"name": "WEBHOOK_URL",
"default": "https://n8n.example.com/",
"description": "Webhook URL.",
"label": "WEBHOOK_URL"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/n8n/docker-compose.yml"
},
"type": 3,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/n8n.png",
"id": 12
},
{
"description": "Zigbee to MQTT bridge, get rid of your proprietary Zigbee bridges",
"note": "Check the <a href=\"https://www.zigbee2mqtt.io/\" target=\"_blank\">Main Zigbee2MQTT Page</a> to get started.",
"title": "Zigbee2mqtt (Cookbook)",
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/zigbee2mqtt/docker-compose.yml"
},
"name": "zigbee2mqtt",
"categories": [
"Cookbook"
],
"type": 3,
"platform": "linux",
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/zigbee2mqtt.png",
"env": [],
"id": 13
},
{
"description": "AutoGen Studio is an interface powered by AutoGen, designed to simplify the process of creating and managing multi-agent solutions. It\u2019s a user-friendly platform that allows even beginners to declaratively define and modify agents and multi-agent workflows through an intuitive interface.",
"title": "autogen-studio (Cookbook)",
"categories": [
"AI",
"Cookbook"
],
"platform": "linux",
"name": "autogen-studio",
"note": "<a href=\"https://autogen-studio.com/\" target=\"_blank\">AutoGen Studio Official Page</a><br>\n<a href=\"https://github.com/lludlow/autogen-studio\" target=\"_blank\">Larry Ludlow Github Docker container for Autogen Studio</a><br>\n<br>\nWebUI: http://autogen-studio:8081/\n <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "AUTOGEN_PORT",
"default": "8081",
"description": "The port to run the AutoGen Studio server on. Default is 8081.",
"label": "AUTOGEN_PORT"
},
{
"name": "OPENAI_API_KEY",
"default": "sk-1234",
"description": "The API key used for the OpenAI connector.",
"required": true,
"label": "OPENAI_API_KEY"
},
{
"name": "OPENAI_BASE_URL",
"default": "https://api.openai.com/v1",
"description": "The Base URL used for the OpenAI connector.",
"label": "OPENAI_BASE_URL"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/autogenstudio/docker-compose.yml"
},
"type": 3,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/autogenstudio.png",
"id": 14
},
{
"description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.",
"title": "Node-RED (Cookbook)",
"categories": [
"Low Code",
"Cookbook"
],
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone",
"default": "UTC"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/node-red/docker-compose.yml"
},
"name": "node-red",
"type": 3,
"platform": "linux",
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/node-red.png",
"note": "<br><a href=\"{GITHUB_URL_CONTENT}main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"id": 15
},
{
"description": "Qdrant is an Open-Source Vector Database and Vector Search Engine written in Rust. It provides fast and scalable vector similarity search service.",
"categories": [
"Database",
"Cookbook"
],
"title": "Qdrant (Cookbook)",
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/qdrant/docker-compose.yml"
},
"name": "qdrant",
"type": 3,
"platform": "linux",
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/qdrant.png",
"env": [],
"id": 16
},
{
"description": "Open source low-code tool for developers to build customized LLM orchestration flow & AI agents",
"title": "FlowiseAI (Cookbook)",
"categories": [
"Low Code",
"AI",
"Cookbook"
],
"platform": "linux",
"note": "<a href=\"https://flowiseai.com/\" target=\"_blank\">FlowiseAI Docs</a><br> <a href=\"https://github.com/FlowiseAI/Flowise\" target=\"_blank\">FlowiseAI Github</a> | Report <a href=\"https://github.com/FlowiseAI/Flowise/issues\" target=\"_blank\">Issue</a><br> <a href=\"https://www.docker.com/blog/how-to-use-the-postgres-docker-official-image/\" target=\"_blank\">Postgres Docker Info</a> <br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"name": "flowise",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "flowise",
"description": "Specifies a name for your database or defaults to the POSTGRES_USER value when left blank."
},
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "flowiseuser",
"description": "Specifies a user with superuser privileges and a database with the same name. Postgres uses the default user when this is empty."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "fl0wiser83632ai",
"description": "Password used by the POSTGRES_USER."
},
{
"name": "FLOWISE_PORT",
"default": "3000",
"description": "Port to expose flowise server. Default is 3000.",
"label": "FLOWISE_PORT"
},
{
"name": "FLOWISE_USERNAME",
"default": "user",
"description": "Username for flowise basic auth. Default is `user`.",
"label": "FLOWISE_USERNAME"
},
{
"name": "FLOWISE_PASSWORD",
"default": "1234",
"description": "Password for flowise basic auth. Default is 1234",
"label": "FLOWISE_PASSWORD"
}
],
"repository": {
"url": "https://github.com/nchekwa/docker-swarm-cookbook/",
"stackfile": "cookbook/composeStacks/flowiseai/docker-compose.yml"
},
"type": 3,
"logo": "https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/icons/flowiseai.png",
"id": 17
},
{
"description": "Langflow-AI is a visual framework for building multi-agent and RAG applications. It's open-source, Python-powered, fully customizable, model and vector store agnostic.",
"title": "Langflow-AI (Cookbook)",
"categories": [
"AI",
"Low Code",
"Cookbook"
],
"platform": "linux",
"note": "<a href=\"https://www.docker.com/blog/how-to-use-the-postgres-docker-official-image/\" target=\"_blank\">Postgres Docker Info</a> <br> <a href=\"https://docs.langflow.org/\" target=\"_blank\">Langflow Docs</a><br> <br> <a href=\"https://github.com/langflow-ai/langflow/issues/1708\" target=\"_blank\">Issue 1708</a> In case of error <b>\"An error has occurred while fetching types\"</b> <br> Ensure that env variables are set correctly<br> LANGFLOW_ACCESS_SAME_SITE = <b>lax</b><br> LANGFLOW_ACCESS_SECURE = <b>false</b><br> <b>Note:</b> This error ocure when you access via http and not using SSL proxy. <br> <br> <br> <a href=\"https://raw.githubusercontent.com/nchekwa/docker-swarm-cookbook/main/tz/timezones.txt\" target=\"_blank\">timedatectl list-timezones</a> to see all timezones",
"env": [
{
"name": "TZ",
"label": "Time-Zone",
"description": "Time Zone. Default is UTC.",
"default": "UTC"
},
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "langflow",
"description": "Specifies a user with superuser privileges and a database with the same name. Postgres uses the default user when this is empty."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "langflow345",
"description": "Password used by the POSTGRES_USER."
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "langflow",
"description": "Specifies a name for your database or defaults to the POSTGRES_USER value when left blank."
},
{
"name": "LANGFLOW_PORT",
"default": "7860",
"description": "The port to run the Langflow server on. Default is 7860.",
"label": "LANGFLOW_PORT"
},
{
"name": "LANGFLOW_AUTO_LOGIN",
"description": "Determines whether Langflow should automatically log users in. Default is True.",
"select": [
{
"text": "True",
"value": "true",
"default": true
},
{
"text": "False",