forked from Dokploy/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.json
More file actions
6782 lines (6782 loc) · 199 KB
/
meta.json
File metadata and controls
6782 lines (6782 loc) · 199 KB
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
[
{
"id": "ackee",
"name": "Ackee",
"version": "latest",
"description": "Ackee is a self-hosted analytics tool for your website.",
"logo": "logo.png",
"links": {
"github": "https://github.com/electerious/Ackee",
"website": "https://ackee.electerious.com/",
"docs": "https://docs.ackee.electerious.com/"
},
"tags": [
"analytics",
"self-hosted"
]
},
{
"id": "activepieces",
"name": "Activepieces",
"version": "0.35.0",
"description": "Open-source no-code business automation tool. An alternative to Zapier, Make.com, and Tray.",
"logo": "activepieces.svg",
"links": {
"github": "https://github.com/activepieces/activepieces",
"website": "https://www.activepieces.com/",
"docs": "https://www.activepieces.com/docs"
},
"tags": [
"automation",
"workflow",
"no-code"
]
},
{
"id": "actualbudget",
"name": "Actual Budget",
"version": "latest",
"description": "A super fast and privacy-focused app for managing your finances.",
"logo": "actualbudget.png",
"links": {
"github": "https://github.com/actualbudget/actual",
"website": "https://actualbudget.org",
"docs": "https://actualbudget.org/docs"
},
"tags": [
"budgeting",
"finance",
"money"
]
},
{
"id": "adguardhome",
"name": "AdGuard Home",
"version": "latest",
"description": "AdGuard Home is a comprehensive solution designed to enhance your online browsing experience by eliminating all kinds of ads, from annoying banners and pop-ups to intrusive video ads. It provides privacy protection, browsing security, and parental control features while maintaining website functionality.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/AdguardTeam/AdGuardHome",
"website": "https://adguard.com",
"docs": "https://github.com/AdguardTeam/AdGuardHome/wiki"
},
"tags": [
"privacy",
"security",
"dns",
"ad-blocking"
]
},
{
"id": "adminer",
"name": "Adminer",
"version": "4.8.1",
"description": "Adminer is a comprehensive database management tool that supports MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB and others. It provides a clean interface for efficient database operations, with strong security features and extensive customization options.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/vrana/adminer",
"website": "https://www.adminer.org/",
"docs": "https://www.adminer.org/en/plugins/"
},
"tags": [
"databases",
"developer-tools",
"mysql",
"postgresql"
]
},
{
"id": "adventurelog",
"name": "AdventureLog",
"version": "latest",
"description": "AdventureLog is an open-source activity tracker with maps, journaling, and Strava integration.",
"logo": "adventurelog.svg",
"links": {
"github": "https://github.com/seanmorley15/adventurelog",
"website": "https://adventurelog.app/",
"docs": "https://adventurelog.app/docs/"
},
"tags": [
"activity",
"maps",
"django",
"react",
"postgres"
]
},
{
"id": "affinepro",
"name": "Affine Pro",
"version": "stable-780dd83",
"description": "Affine Pro is a modern, self-hosted platform designed for collaborative content creation and project management. It offers an intuitive interface, seamless real-time collaboration, and powerful tools for organizing tasks, notes, and ideas.",
"logo": "logo.png",
"links": {
"github": "https://github.com/toeverything/Affine",
"website": "https://affine.pro/",
"docs": "https://affine.pro/docs"
},
"tags": [
"collaboration",
"self-hosted",
"productivity",
"project-management"
]
},
{
"id": "agentdvr",
"name": "Agent DVR",
"version": "latest",
"description": "Agent DVR is a comprehensive video surveillance software with motion detection, alerts, and remote access capabilities.",
"logo": "agentdvr.png",
"links": {
"github": "https://github.com/ispysoftware/AgentDVR",
"website": "https://www.ispyconnect.com/",
"docs": "https://www.ispyconnect.com/userguide-agent-dvr.aspx"
},
"tags": [
"surveillance",
"security",
"video",
"monitoring",
"dvr",
"camera"
]
},
{
"id": "akaunting",
"name": "Akaunting",
"version": "latest",
"description": "Akaunting is a self-hosted, open-source accounting app for small businesses.",
"logo": "image.png",
"links": {
"github": "https://github.com/akaunting/akaunting",
"website": "https://akaunting.com",
"docs": "https://akaunting.com/docs"
},
"tags": [
"finance",
"accounting",
"php",
"mariadb",
"self-hosted"
]
},
{
"id": "alist",
"name": "AList",
"version": "v3.55.0",
"description": "🗂️A file list/WebDAV program that supports multiple storages, powered by Gin and Solidjs.",
"logo": "alist.svg",
"links": {
"github": "https://github.com/AlistGo/alist",
"website": "https://alistgo.com/",
"docs": "https://alistgo.com/guide/install/docker.html"
},
"tags": [
"file",
"webdav",
"storage"
]
},
{
"id": "alltube",
"name": "AllTube",
"version": "latest",
"description": "AllTube Download is an application designed to facilitate the downloading of videos from YouTube and other video sites. It provides an HTML GUI for youtube-dl with video conversion capabilities and JSON API support.",
"logo": "logo.png",
"links": {
"github": "https://github.com/Rudloff/alltube",
"website": "https://github.com/Rudloff/alltube",
"docs": "https://github.com/Rudloff/alltube/wiki"
},
"tags": [
"media",
"video",
"downloader"
]
},
{
"id": "ampache",
"name": "Ampache",
"version": "latest",
"description": "Ampache is a web-based audio/video streaming application and file manager allowing you to access your music & videos from anywhere, using almost any internet enabled device.",
"logo": "logo.png",
"links": {
"github": "https://github.com/ampache/ampache",
"website": "http://ampache.org/",
"docs": "https://github.com/ampache/ampache/wiki"
},
"tags": [
"media",
"music",
"streaming"
]
},
{
"id": "anonupload",
"name": "AnonUpload",
"version": "1",
"description": "AnonUpload is a secure, anonymous file sharing application that does not require a database. It is built with privacy as a priority, ensuring that the direct filename used is not displayed.",
"logo": "logo.png",
"links": {
"github": "https://github.com/supernova3339/anonupload",
"docs": "https://github.com/Supernova3339/anonupload/blob/main/env.md",
"website": "https://anonupload.com/"
},
"tags": [
"file-sharing",
"privacy"
]
},
{
"id": "anse",
"name": "Anse",
"version": "latest",
"description": "Anse is an open-source alternative to ChatGPT web UI, supporting OpenAI-compatible APIs.",
"logo": "image.png",
"links": {
"github": "https://github.com/ddiu8081/anse",
"website": "https://anse.app/",
"docs": "https://github.com/ddiu8081/anse#readme"
},
"tags": [
"ai",
"chatbot",
"openai",
"ui"
]
},
{
"id": "answer",
"name": "Answer",
"version": "v1.4.1",
"description": "Answer is an open-source Q&A platform for building a self-hosted question-and-answer service.",
"logo": "answer.png",
"links": {
"github": "https://github.com/apache/answer",
"website": "https://answer.apache.org/",
"docs": "https://answer.apache.org/docs"
},
"tags": [
"q&a",
"self-hosted"
]
},
{
"id": "anubis",
"name": "Anubis",
"version": "latest",
"description": "Anubis is a bot protector, It will block bots from accessing your website.",
"logo": "anubis.webp",
"links": {
"github": "https://github.com/TecharoHQ/anubis",
"website": "https://anubis.techaro.lol",
"docs": "https://anubis.techaro.lol/docs/"
},
"tags": [
"self-hosted",
"bot-protection"
]
},
{
"id": "anythingllm",
"name": "AnythingLLM",
"version": "latest",
"description": "AnythingLLM is a private, self-hosted, and local document chatbot platform that allows you to chat with your documents using various LLM providers.",
"logo": "logo.png",
"links": {
"github": "https://github.com/Mintplex-Labs/anything-llm",
"website": "https://useanything.com",
"docs": "https://github.com/Mintplex-Labs/anything-llm/tree/master/docs"
},
"tags": [
"ai",
"llm",
"chatbot"
]
},
{
"id": "anytype",
"name": "Anytype",
"version": "latest",
"description": "Anytype is a personal knowledge base—your digital brain—that lets you gather, connect and remix all kinds of information. Create pages, tasks, wikis, journals—even entire apps—and define your own data model while your data stays offline-first, private and encrypted across devices.\n\nAfter installation, you can view the Anytype client configuration by running `cat /data/client-config.yml` inside the service container.",
"logo": "logo.png",
"links": {
"github": "https://github.com/grishy/any-sync-bundle",
"docs": "https://doc.anytype.io/anytype-docs",
"website": "https://anytype.io/"
},
"tags": [
"note-taking",
"local-first",
"peer-to-peer"
]
},
{
"id": "appflowy",
"name": "App Flowy",
"version": "0.9.3",
"description": "AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations.",
"links": {
"github": "https://github.com/AppFlowy-IO/AppFlowy",
"website": "https://appflowy.io/",
"docs": "https://docs.appflowy.io/docs"
},
"logo": "appflowy.png",
"tags": [
"productivity",
"self-hosted",
"notes",
"knowledge-base",
"notion-alternative"
]
},
{
"id": "apprise-api",
"name": "Apprise API",
"version": "latest",
"description": "Apprise API provides a simple interface for sending notifications to almost all of the most popular notification services available to us today.",
"logo": "logo.png",
"links": {
"github": "https://github.com/caronc/apprise-api",
"website": "https://github.com/caronc/apprise-api",
"docs": "https://github.com/caronc/apprise-api/wiki"
},
"tags": [
"notifications",
"api"
]
},
{
"id": "appsmith",
"name": "Appsmith",
"version": "v1.94",
"description": "Appsmith is a free and open source platform for building internal tools and applications.",
"logo": "appsmith.png",
"links": {
"github": "https://github.com/appsmithorg/appsmith",
"website": "https://appsmith.com/",
"docs": "https://docs.appsmith.com/"
},
"tags": [
"cms"
]
},
{
"id": "appwrite",
"name": "Appwrite",
"version": "1.8.0",
"description": "Appwrite is an end-to-end platform for building Web, Mobile, Native, or Backend apps, packaged as a set of Docker microservices. It includes both a backend server and a fully integrated hosting solution for deploying static and server-side rendered frontends. Appwrite abstracts the complexity and repetitiveness required to build modern apps from scratch and allows you to build secure, full-stack applications faster.\nUsing Appwrite, you can easily integrate your app with user authentication and multiple sign-in methods, a database for storing and querying users and team data, storage and file management, image manipulation, Cloud Functions, messaging, and more services.",
"links": {
"github": "https://github.com/appwrite/appwrite",
"website": "https://appwrite.io/",
"docs": "https://appwrite.io/docs"
},
"logo": "appwrite.svg",
"tags": [
"database",
"firebase",
"mariadb",
"hosting",
"self-hosted"
]
},
{
"id": "aptabase",
"name": "Aptabase",
"version": "v1.0.0",
"description": "Aptabase is a self-hosted web analytics platform that lets you track website traffic and user behavior.",
"logo": "aptabase.svg",
"links": {
"github": "https://github.com/aptabase/aptabase",
"website": "https://aptabase.com/",
"docs": "https://github.com/aptabase/aptabase/blob/main/README.md"
},
"tags": [
"analytics",
"self-hosted"
]
},
{
"id": "arangodb",
"name": "ArangoDB",
"version": "latest",
"description": "ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.",
"logo": "logo.png",
"links": {
"github": "https://github.com/arangodb/arangodb",
"website": "https://www.arangodb.com/",
"docs": "https://www.arangodb.com/docs/"
},
"tags": [
"database",
"graph-database",
"nosql"
]
},
{
"id": "argilla",
"name": "Argilla",
"version": "latest",
"description": "Argilla is a robust platform designed to help engineers and data scientists streamline the management of machine learning data workflows. It simplifies tasks like data labeling, annotation, and quality control.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/argilla-io/argilla",
"website": "https://www.argilla.io/",
"docs": "https://docs.argilla.io/"
},
"tags": [
"machine-learning",
"data-labeling",
"ai"
]
},
{
"id": "audiobookshelf",
"name": "Audiobookshelf",
"version": "2.19.4",
"description": "Audiobookshelf is a self-hosted server designed to manage and play your audiobooks and podcasts. It works best when you have an organized directory structure.",
"logo": "logo.png",
"links": {
"github": "https://github.com/advplyr/audiobookshelf",
"website": "https://www.audiobookshelf.org",
"docs": "https://www.audiobookshelf.org/docs"
},
"tags": [
"media",
"audiobooks",
"podcasts"
]
},
{
"id": "authelia",
"name": "Authelia",
"version": "latest",
"description": "The Single Sign-On Multi-Factor portal for web apps. An open-source authentication and authorization server providing 2FA and SSO via web portal.",
"logo": "authelia.png",
"links": {
"github": "https://github.com/authelia/authelia",
"website": "https://www.authelia.com/",
"docs": "https://www.authelia.com/overview/prologue/introduction/"
},
"tags": [
"authentication",
"authorization",
"2fa",
"sso",
"security",
"reverse-proxy",
"ldap"
]
},
{
"id": "authentik",
"name": "Authentik",
"version": "2025.6.3",
"description": "Authentik is an open-source Identity Provider for authentication and authorization. It provides a comprehensive solution for managing user authentication, authorization, and identity federation with support for SAML, OAuth2, OIDC, and more.",
"links": {
"github": "https://github.com/goauthentik/authentik",
"website": "https://goauthentik.io/",
"docs": "https://goauthentik.io/docs/"
},
"logo": "authentik.svg",
"tags": [
"authentication",
"identity",
"sso",
"oidc",
"saml",
"oauth2",
"self-hosted"
]
},
{
"id": "authorizer",
"name": "Authorizer",
"version": "1.4.4",
"description": "Authorizer is a powerful tool designed to simplify the process of user authentication and authorization in your applications. It allows you to build secure apps 10x faster with its low code tool and low-cost deployment.",
"logo": "logo.png",
"links": {
"github": "https://github.com/authorizerdev/authorizer",
"website": "https://authorizer.dev",
"docs": "https://docs.authorizer.dev/"
},
"tags": [
"authentication",
"authorization",
"security"
]
},
{
"id": "autobase",
"name": "Autobase",
"version": "2.5.2",
"description": "Autobase for PostgreSQL® is an open-source alternative to cloud-managed databases (self-hosted DBaaS).",
"links": {
"github": "https://github.com/vitabaks/autobase",
"website": "https://autobase.tech/",
"docs": "https://autobase.tech/docs"
},
"logo": "autobase.svg",
"tags": [
"database",
"postgres",
"automation",
"self-hosted",
"dbaas"
]
},
{
"id": "automatisch",
"name": "Automatisch",
"version": "2.0",
"description": "Automatisch is a powerful, self-hosted workflow automation tool designed for connecting your apps and automating repetitive tasks. With Automatisch, you can create workflows to sync data, send notifications, and perform various actions seamlessly across different services.",
"logo": "logo.png",
"links": {
"github": "https://github.com/automatisch/automatisch",
"website": "https://automatisch.io/docs",
"docs": "https://automatisch.io/docs"
},
"tags": [
"automation",
"workflow",
"integration"
]
},
{
"id": "azuracast",
"name": "AzuraCast",
"version": "latest",
"description": "AzuraCast is a self-hosted, all-in-one web radio management suite. Easily manage your online radio stations with a powerful web interface.",
"logo": "azuracast.png",
"links": {
"github": "https://github.com/AzuraCast/AzuraCast",
"website": "https://www.azuracast.com/",
"docs": "https://docs.azuracast.com/"
},
"tags": [
"radio",
"streaming",
"media",
"broadcasting",
"music",
"entertainment"
]
},
{
"id": "babybuddy",
"name": "BabyBuddy",
"version": "2.7.0",
"description": "BabyBuddy is a comprehensive, user-friendly platform designed to help parents and caregivers manage essential details about their child's growth and development. It provides tools for tracking feedings, sleep schedules, diaper changes, and milestones.",
"logo": "logo.png",
"links": {
"github": "https://github.com/babybuddy/babybuddy",
"website": "https://babybuddy.app",
"docs": "https://docs.babybuddy.app"
},
"tags": [
"parenting",
"tracking",
"family"
]
},
{
"id": "backrest",
"name": "Backrest",
"version": "1.6.0",
"description": "Backrest is a web-based backup solution powered by restic, offering an intuitive WebUI for easy repository management, snapshot browsing, and file restoration. It runs in the background, automating snapshot scheduling and repository maintenance. Built with Go, Backrest is a lightweight standalone binary with restic as its only dependency. It provides a secure and user-friendly way to manage backups while still allowing direct access to the restic CLI for advanced operations.",
"links": {
"github": "https://github.com/garethgeorge/backrest",
"website": "https://garethgeorge.github.io/backrest",
"docs": "https://garethgeorge.github.io/backrest/introduction/getting-started"
},
"logo": "backrest.svg",
"tags": [
"backup"
]
},
{
"id": "baikal",
"name": "Baikal",
"version": "nginx-php8.2",
"description": "Baikal is a lightweight, self-hosted CalDAV and CardDAV server that enables users to manage calendars and contacts efficiently. It provides a simple and effective solution for syncing and sharing events, tasks, and address books across multiple devices.",
"logo": "logo.png",
"links": {
"website": "https://sabre.io/baikal/",
"github": "https://sabre.io/baikal/",
"docs": "https://sabre.io/baikal/install/"
},
"tags": [
"calendar",
"contacts",
"caldav",
"carddav"
]
},
{
"id": "barrage",
"name": "Barrage",
"version": "0.3.0",
"description": "Barrage is a minimalistic Deluge WebUI app with full mobile support. It features a responsive mobile-first design, allowing you to manage your torrents with ease from any device.",
"logo": "logo.png",
"links": {
"github": "https://github.com/maulik9898/barrage",
"website": "https://github.com/maulik9898/barrage",
"docs": "https://github.com/maulik9898/barrage/blob/main/README.md"
},
"tags": [
"torrents",
"deluge",
"mobile"
]
},
{
"id": "baserow",
"name": "Baserow",
"version": "1.25.2",
"description": "Baserow is an open source database management tool that allows you to create and manage databases.",
"logo": "baserow.webp",
"links": {
"github": "https://github.com/Baserow/baserow",
"website": "https://baserow.io/",
"docs": "https://baserow.io/docs/index"
},
"tags": [
"database"
]
},
{
"id": "bazarr",
"name": "Bazarr",
"version": "latest",
"description": "Bazarr is a companion application to Sonarr and Radarr that manages and downloads subtitles based on your requirements.",
"logo": "logo.png",
"links": {
"github": "https://github.com/morpheus65535/bazarr",
"website": "https://www.bazarr.media/",
"docs": "https://www.bazarr.media/docs"
},
"tags": [
"subtitles",
"sonarr",
"radarr"
]
},
{
"id": "bentopdf",
"name": "BentoPDF",
"version": "latest",
"description": "BentoPDF is a lightweight PDF conversion microservice that exposes a simple HTTP API for generating PDFs.",
"logo": "image.png",
"links": {
"github": "https://github.com/bentopdf/bentopdf",
"website": "https://bentopdf.com/",
"docs": "https://github.com/bentopdf/bentopdf#readme"
},
"tags": [
"pdf",
"converter",
"api",
"utility"
]
},
{
"id": "beszel",
"name": "Beszel",
"version": "0.10.2",
"description": "A lightweight server monitoring hub with historical data, docker stats, and alerts.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/henrygd/beszel",
"website": "https://beszel.dev",
"docs": "https://beszel.dev/guide/getting-started"
},
"tags": [
"monitoring",
"docker",
"alerts"
]
},
{
"id": "bigcapital",
"name": "BigCapital",
"version": "latest",
"description": "BigCapital is a great open source alternative to QuickBooks. A comprehensive accounting and financial management system for businesses.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/bigcapitalhq/bigcapital",
"website": "https://bigcapital.app/",
"docs": "https://github.com/bigcapitalhq/bigcapital"
},
"tags": [
"accounting",
"finance",
"bookkeeping",
"quickbooks",
"erp",
"business"
]
},
{
"id": "blender",
"name": "Blender",
"version": "latest",
"description": "Blender is a free and open-source 3D creation suite. It supports the entire 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, video editing and 2D animation pipeline.",
"logo": "blender.svg",
"links": {
"github": "https://github.com/linuxserver/docker-blender",
"website": "https://www.blender.org/",
"docs": "https://docs.blender.org/"
},
"tags": [
"3d",
"rendering",
"animation"
]
},
{
"id": "blinko",
"name": "Blinko",
"version": "latest",
"description": "Blinko is a modern web application for managing and organizing your digital content and workflows.",
"logo": "blinko.svg",
"links": {
"github": "https://github.com/blinkospace/blinko",
"website": "https://blinko.space/",
"docs": "https://docs.blinko.space/"
},
"tags": [
"productivity",
"organization",
"workflow",
"nextjs"
]
},
{
"id": "bluesky-pds",
"name": "Bluesky PDS",
"version": "0.4.182",
"description": "Bluesky PDS is a personal data server for Bluesky.",
"logo": "bluesky-pds.svg",
"links": {
"github": "https://github.com/bluesky-social/pds",
"website": "https://bsky.social/about",
"docs": "https://github.com/bluesky-social/pds"
},
"tags": [
"bluesky",
"pds",
"data",
"server"
]
},
{
"id": "bolt.diy",
"name": "bolt.diy",
"version": "latest",
"description": "Prompt, run, edit, and deploy full-stack web applications using any LLM you want!",
"logo": "logo.jpg",
"links": {
"github": "https://github.com/stackblitz-labs/bolt.diy",
"website": "https://stackblitz-labs.github.io/bolt.diy/",
"docs": "https://stackblitz-labs.github.io/bolt.diy/"
},
"tags": [
"ai",
"self-hosted",
"development",
"chatbot",
"ide",
"llm"
]
},
{
"id": "booklore",
"name": "Booklore",
"version": "latest",
"description": "Booklore is an application for managing and serving book-related data, backed by a MariaDB database.",
"logo": "image.png",
"links": {
"github": "https://github.com/booklore-app/BookLore",
"website": "https://github.com/booklore-app/BookLore",
"docs": "https://github.com/booklore-app/BookLore/tree/develop/docs"
},
"tags": [
"books",
"library",
"database",
"mariadb"
]
},
{
"id": "bookstack",
"name": "BookStack",
"version": "24.12.1",
"description": "BookStack is a self-hosted platform for creating beautiful, feature-rich documentation sites.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/BookStackApp/BookStack",
"website": "https://www.bookstackapp.com",
"docs": "https://www.bookstackapp.com/docs"
},
"tags": [
"documentation",
"self-hosted"
]
},
{
"id": "borgitory",
"name": "Borgitory",
"version": "latest",
"description": "A web interface for managing BorgBackup archives. Allows browsing, mounting (via FUSE), and handling backup repositories.",
"logo": "image.png",
"links": {
"github": "https://github.com/mlapaglia/borgitory",
"website": "https://github.com/mlapaglia/borgitory",
"docs": "https://github.com/mlapaglia/borgitory"
},
"tags": [
"backup",
"borg",
"archive",
"self-hosted"
]
},
{
"id": "botpress",
"name": "Botpress",
"version": "latest",
"description": "Botpress is a platform for building conversational AI agents. It provides a simple and effective solution for building conversational AI agents from anywhere.",
"logo": "logo.png",
"links": {
"github": "https://github.com/botpress/botpress",
"website": "https://botpress.com",
"docs": "https://botpress.com/docs"
},
"tags": [
"ai",
"self-hosted"
]
},
{
"id": "browserless",
"name": "Browserless",
"version": "2.23.0",
"description": "Browserless allows remote clients to connect and execute headless work, all inside of docker. It supports the standard, unforked Puppeteer and Playwright libraries, as well offering REST-based APIs for common actions like data collection, PDF generation and more.",
"logo": "browserless.svg",
"links": {
"github": "https://github.com/browserless/browserless",
"website": "https://www.browserless.io/",
"docs": "https://docs.browserless.io/"
},
"tags": [
"browser",
"automation"
]
},
{
"id": "budget-board",
"name": "Budget Board",
"version": "release",
"description": "Self-hosted budgeting app with a web UI and a server backed by PostgreSQL.",
"logo": "image.png",
"links": {
"github": "https://github.com/teelur/budget-board",
"website": "https://budgetboard.net/",
"docs": "https://budgetboard.net/"
},
"tags": [
"finance",
"postgres",
"self-hosted",
"docker",
"compose"
]
},
{
"id": "budibase",
"name": "Budibase",
"version": "3.23.47",
"description": "Budibase is an open-source low-code platform that saves engineers 100s of hours building forms, portals, and approval apps, securely.",
"logo": "budibase.svg",
"links": {
"github": "https://github.com/Budibase/budibase",
"website": "https://budibase.com/",
"docs": "https://docs.budibase.com/docs/"
},
"tags": [
"database",
"low-code",
"nocode",
"applications"
]
},
{
"id": "bugsink",
"name": "Bugsink",
"version": "latest",
"description": "Bugsink is a self-hosted Error Tracker. Built to self-host; Sentry-SDK compatible; Scalable and reliable",
"logo": "bugsink.png",
"links": {
"github": "https://github.com/bugsink/bugsink/",
"website": "https://www.bugsink.com/",
"docs": "https://www.bugsink.com/docs/"
},
"tags": [
"hosting",
"self-hosted",
"development"
]
},
{
"id": "bytebase",
"name": "Bytebase",
"version": "latest",
"description": "Bytebase is a database management tool that allows you to manage your databases with ease. It provides a simple and effective solution for managing your databases from anywhere.",
"logo": "image.png",
"links": {
"github": "https://github.com/bytebase/bytebase",
"website": "https://www.bytebase.com",
"docs": "https://www.bytebase.com/docs"
},
"tags": [
"database",
"self-hosted"
]
},
{
"id": "bytestash",
"name": "ByteStash",
"version": "latest",
"description": "ByteStash is a self-hosted web application designed to store, organise, and manage your code snippets efficiently. With support for creating, editing, and filtering snippets, ByteStash helps you keep track of your code in one secure place.",
"logo": "logo.png",
"links": {
"github": "https://github.com/jordan-dalby/ByteStash",
"website": "https://github.com/jordan-dalby/ByteStash",
"docs": "https://github.com/jordan-dalby/ByteStash"
},
"tags": [
"file-storage",
"self-hosted"
]
},
{
"id": "calcom",
"name": "Calcom",
"version": "v2.7.6",
"description": "Calcom is a open source alternative to Calendly that allows to create scheduling and booking services.",
"links": {
"github": "https://github.com/calcom/cal.com",
"website": "https://cal.com/",
"docs": "https://cal.com/docs"
},
"logo": "calcom.jpg",
"tags": [
"scheduling",
"booking"
]
},
{
"id": "calibre",
"name": "Calibre",
"version": "7.26.0",
"description": "Calibre is a comprehensive e-book management tool designed to organize, convert, and read your e-book collection. It supports most of the major e-book formats and is compatible with various e-book reader devices.",
"logo": "logo.png",
"links": {
"github": "https://github.com/kovidgoyal/calibre",
"website": "https://calibre-ebook.com/",
"docs": "https://manual.calibre-ebook.com/"
},
"tags": [
"Documents",
"E-Commerce"
]
},
{
"id": "calibre-web",
"name": "Calibre-Web",
"version": "latest",
"description": "Calibre-Web is a web app providing a clean interface for browsing, reading, and managing your eBooks library using an existing Calibre database.",
"logo": "image.png",