-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
2322 lines (2322 loc) · 78.2 KB
/
Copy pathcatalog.json
File metadata and controls
2322 lines (2322 loc) · 78.2 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
{
"catalog_name": "Daemonless Apps",
"fjord_version": "0.1",
"maintainer": "https://daemonless.io",
"generated": "2026-08-29T08:37:39Z",
"apps": [
{
"id": "adguardhome",
"name": "AdGuard Home",
"category": "Network",
"class": "service",
"icon": "/catalog/icons/adguardhome.svg",
"description": "Network-wide ad and tracker blocking DNS server. Covers all devices on your network with no client-side software — includes DoH, DoT, DoQ, and a built-in DHCP server.",
"upstream_url": "https://github.com/AdguardTeam/AdGuardHome",
"web_url": "https://adguard.com/adguard-home.html",
"image": "ghcr.io/daemonless/adguardhome",
"manifest_url": "/catalog/manifests/adguardhome.yaml",
"version": "v0.107.79",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/adguardhome:latest",
"version": "v0.107.79"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/adguardhome:pkg",
"version": "0.107.77_4"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/adguardhome:pkg-latest",
"version": "0.107.78_2"
}
]
},
{
"id": "adguardhome-sync",
"name": "AdGuardHome Sync",
"category": "Network",
"class": "service",
"icon": "/catalog/icons/adguardhome-sync.svg",
"description": "Sync AdGuardHome configuration to replica instances.",
"upstream_url": "https://github.com/bakito/adguardhome-sync",
"web_url": "https://github.com/bakito/adguardhome-sync",
"image": "ghcr.io/daemonless/adguardhome-sync",
"manifest_url": "/catalog/manifests/adguardhome-sync.yaml",
"version": "v0.9.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/adguardhome-sync:latest",
"version": "v0.9.2"
}
]
},
{
"id": "audiobookshelf",
"name": "Audiobookshelf",
"category": "Media Servers",
"class": "service",
"icon": "/catalog/icons/audiobookshelf.svg",
"description": "Self-hosted audiobook and podcast server.",
"upstream_url": "https://github.com/advplyr/audiobookshelf",
"web_url": "https://www.audiobookshelf.org/",
"image": "ghcr.io/daemonless/audiobookshelf",
"manifest_url": "/catalog/manifests/audiobookshelf.yaml",
"version": "2.36.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/audiobookshelf:latest",
"version": "2.36.0"
}
]
},
{
"id": "bazarr",
"name": "Bazarr",
"category": "Media Management",
"class": "service",
"icon": "/catalog/icons/bazarr.svg",
"description": "Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
"upstream_url": "https://github.com/morpheus65535/bazarr",
"web_url": "https://www.bazarr.media/",
"image": "ghcr.io/daemonless/bazarr",
"manifest_url": "/catalog/manifests/bazarr.yaml",
"version": "v1.6.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/bazarr:latest",
"version": "v1.6.0"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/bazarr:pkg",
"version": "1.5.6_1"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/bazarr:pkg-latest",
"version": "1.6.0"
}
]
},
{
"id": "bichon",
"name": "Bichon",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/bichon.svg",
"description": "A lightweight, high-performance Rust email archiver with WebUI.",
"upstream_url": "https://github.com/rustmailer/bichon",
"web_url": "https://github.com/rustmailer/bichon",
"image": "ghcr.io/daemonless/bichon",
"manifest_url": "/catalog/manifests/bichon.yaml",
"version": "2.0.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/bichon:latest",
"version": "2.0.2"
}
]
},
{
"id": "bulwark-webmail",
"name": "Bulwark Webmail",
"category": "Productivity",
"class": "service",
"icon": "/catalog/icons/bulwark-webmail.svg",
"description": "Modern self-hosted webmail client for Stalwart Mail Server, powered by JMAP.",
"upstream_url": "https://github.com/bulwarkmail/webmail",
"web_url": "https://bulwarkmail.org/",
"image": "ghcr.io/daemonless/bulwark-webmail",
"manifest_url": "/catalog/manifests/bulwark-webmail.yaml",
"version": "1.9.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/bulwark-webmail:latest",
"version": "1.9.2"
}
]
},
{
"id": "caddy",
"name": "Caddy",
"category": "Network",
"class": "service",
"icon": "/catalog/icons/caddy.svg",
"description": "Fast, multi-platform web server and reverse proxy with automatic HTTPS, written in Go.",
"upstream_url": "https://github.com/caddyserver/caddy",
"web_url": "https://caddyserver.com",
"image": "ghcr.io/daemonless/caddy",
"manifest_url": "/catalog/manifests/caddy.yaml",
"version": "v2.11.4",
"variants": [
{
"id": "latest",
"label": "Official upstream Caddy FreeBSD binary (auto-tracks latest release).",
"default": true,
"image": "ghcr.io/daemonless/caddy:latest",
"version": "v2.11.4"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/caddy:pkg",
"version": "2.11.4_3"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/caddy:pkg-latest",
"version": "2.11.4_3"
}
]
},
{
"id": "cloudflared",
"name": "Cloudflared",
"category": "Infrastructure",
"class": "service",
"icon": "/catalog/icons/cloudflared.svg",
"description": "Tunneling daemon that proxies any local webserver through the Cloudflare network without DNS records or firewall changes.",
"upstream_url": "https://github.com/cloudflare/cloudflared",
"web_url": "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps",
"image": "ghcr.io/daemonless/cloudflared",
"manifest_url": "/catalog/manifests/cloudflared.yaml",
"version": "2026.2.0_7",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/cloudflared:pkg",
"version": "2026.2.0_7"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/cloudflared:pkg-latest",
"version": "2026.2.0_7"
}
]
},
{
"id": "pkg-cache",
"name": "Daemonless pkg cache",
"category": "Infrastructure",
"class": "service",
"icon": "/catalog/icons/pkg-cache.svg",
"description": "Managed FreeBSD pkg caching appliance — proxies pkg.FreeBSD.org to speed up package fetches across image builds and insulate them from upstream rate limits/outages.",
"upstream_url": "https://github.com/daemonless/pkg-cache",
"web_url": "https://daemonless.io/images/pkg-cache/",
"image": "ghcr.io/daemonless/pkg-cache",
"manifest_url": "/catalog/manifests/pkg-cache.yaml",
"version": "1.3",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/pkg-cache:latest",
"version": "1.3"
}
]
},
{
"id": "dispatcharr",
"name": "Dispatcharr",
"category": "Media Management",
"class": "service",
"icon": "/catalog/icons/dispatcharr.svg",
"description": "Dispatcharr — stream dispatching and channel management.",
"upstream_url": "https://github.com/Dispatcharr/Dispatcharr",
"web_url": "https://dispatcharr.io/",
"image": "ghcr.io/daemonless/dispatcharr",
"manifest_url": "/catalog/manifests/dispatcharr.yaml",
"version": "v0.29.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/dispatcharr:latest",
"version": "v0.29.0"
}
]
},
{
"id": "emby",
"name": "Emby",
"category": "Media Servers",
"class": "service",
"icon": "/catalog/icons/emby.svg",
"description": "Personal media server with apps on just about every device.",
"upstream_url": "https://github.com/MediaBrowser/Emby",
"web_url": "https://emby.media/",
"image": "ghcr.io/daemonless/emby",
"manifest_url": "/catalog/manifests/emby.yaml",
"version": "4.9.3.0_1",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/emby:pkg",
"version": "4.9.3.0_1"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/emby:pkg-latest",
"version": "4.9.3.0_3"
},
{
"id": "beta",
"label": "beta",
"image": "ghcr.io/daemonless/emby:beta"
}
]
},
{
"id": "ffmpeg",
"name": "FFmpeg",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/ffmpeg.svg",
"description": "FFmpeg CLI (audio/video transcoding) on FreeBSD.",
"upstream_url": "https://ffmpeg.org",
"web_url": "https://ffmpeg.org/",
"image": "ghcr.io/daemonless/ffmpeg",
"manifest_url": "/catalog/manifests/ffmpeg.yaml",
"version": "8.1.2_1,1",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/ffmpeg:pkg",
"version": "8.1.2_1,1"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/ffmpeg:pkg-latest",
"version": "8.1.2_2,1"
}
]
},
{
"id": "forgejo",
"name": "Forgejo",
"category": "Infrastructure",
"class": "service",
"icon": "/catalog/icons/forgejo.svg",
"description": "Forgejo is a self-hosted lightweight software forge",
"upstream_url": "https://codeberg.org/forgejo/forgejo",
"web_url": "https://forgejo.org/",
"image": "ghcr.io/daemonless/forgejo",
"manifest_url": "/catalog/manifests/forgejo.yaml",
"version": "15.0.7",
"variants": [
{
"id": "15",
"label": "Built from latest upstream source release of the v15 branch.",
"image": "ghcr.io/daemonless/forgejo:15",
"version": "15.0.7"
},
{
"id": "15-latest",
"label": "Built from latest upstream source release of the v15 branch with latest FreeBSD packages.",
"default": true,
"image": "ghcr.io/daemonless/forgejo:15-latest"
},
{
"id": "15-pkg-latest",
"label": "15-pkg-latest",
"image": "ghcr.io/daemonless/forgejo:15-pkg-latest",
"version": "15.0.7"
},
{
"id": "16",
"label": "Built from latest upstream source release of the v16 branch.",
"image": "ghcr.io/daemonless/forgejo:16",
"version": "16.0.3"
},
{
"id": "16-latest",
"label": "Built from latest upstream source release of the v16 branch with latest FreeBSD packages.",
"image": "ghcr.io/daemonless/forgejo:16-latest"
},
{
"id": "16-pkg-latest",
"label": "16-pkg-latest",
"image": "ghcr.io/daemonless/forgejo:16-pkg-latest",
"version": "16.0.3"
}
]
},
{
"id": "gitea",
"name": "Gitea",
"category": "Infrastructure",
"class": "service",
"icon": "/catalog/icons/gitea.svg",
"description": "Lightweight self-hosted Git service — a community managed fork of Gogs written in Go.",
"upstream_url": "https://github.com/go-gitea/gitea",
"web_url": "https://about.gitea.com/",
"image": "ghcr.io/daemonless/gitea",
"manifest_url": "/catalog/manifests/gitea.yaml",
"version": "1.27.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/gitea:latest",
"version": "1.27.2"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/gitea:pkg",
"version": "1.26.4_2"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/gitea:pkg-latest",
"version": "1.26.4_2"
}
]
},
{
"id": "grafana",
"name": "Grafana",
"category": "Network",
"class": "service",
"icon": "/catalog/icons/grafana.svg",
"description": "Grafana is an open source and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.",
"upstream_url": "https://github.com/grafana/grafana",
"web_url": "https://grafana.com/grafana/",
"image": "ghcr.io/daemonless/grafana",
"manifest_url": "/catalog/manifests/grafana.yaml",
"version": "13.1.1_2",
"variants": [
{
"id": "pkg",
"label": "Installed from the FreeBSD quarterly package repository.",
"default": true,
"image": "ghcr.io/daemonless/grafana:pkg",
"version": "13.1.1_2"
},
{
"id": "pkg-latest",
"label": "Installed from the FreeBSD latest package repository.",
"image": "ghcr.io/daemonless/grafana:pkg-latest",
"version": "13.1.1_2"
}
]
},
{
"id": "haproxy",
"name": "HAProxy",
"category": "Infrastructure",
"class": "service",
"icon": "/catalog/icons/haproxy.svg",
"description": "Reliable, high performance TCP/HTTP load balancer and reverse proxy.",
"upstream_url": "https://github.com/haproxy/haproxy",
"web_url": "https://www.haproxy.org/",
"image": "ghcr.io/daemonless/haproxy",
"manifest_url": "/catalog/manifests/haproxy.yaml",
"version": "3.4.3",
"variants": [
{
"id": "3.4-pkg-latest",
"label": "HAProxy 3.4 release branch installed from FreeBSD latest packages.",
"default": true,
"image": "ghcr.io/daemonless/haproxy:3.4-pkg-latest",
"version": "3.4.3"
},
{
"id": "3.3-pkg-latest",
"label": "HAProxy 3.3 release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:3.3-pkg-latest",
"version": "3.3.13"
},
{
"id": "3.2-pkg-latest",
"label": "HAProxy 3.2 LTS release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:3.2-pkg-latest",
"version": "3.2.22"
},
{
"id": "3.0-pkg-latest",
"label": "HAProxy 3.0 LTS release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:3.0-pkg-latest",
"version": "3.0.26"
},
{
"id": "2.8-pkg-latest",
"label": "HAProxy 2.8 LTS release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:2.8-pkg-latest",
"version": "2.8.27"
},
{
"id": "2.6-pkg-latest",
"label": "HAProxy 2.6 LTS release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:2.6-pkg-latest",
"version": "2.6.32"
},
{
"id": "2.4-pkg-latest",
"label": "HAProxy 2.4 LTS release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:2.4-pkg-latest",
"version": "2.4.35"
},
{
"id": "devel-pkg-latest",
"label": "HAProxy development edge release branch installed from FreeBSD latest packages.",
"image": "ghcr.io/daemonless/haproxy:devel-pkg-latest"
},
{
"id": "3.4-lua-pkg-latest",
"label": "HAProxy 3.4 release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:3.4-lua-pkg-latest"
},
{
"id": "3.3-lua-pkg-latest",
"label": "HAProxy 3.3 release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:3.3-lua-pkg-latest"
},
{
"id": "3.2-lua-pkg-latest",
"label": "HAProxy 3.2 LTS release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:3.2-lua-pkg-latest"
},
{
"id": "3.0-lua-pkg-latest",
"label": "HAProxy 3.0 LTS release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:3.0-lua-pkg-latest"
},
{
"id": "2.8-lua-pkg-latest",
"label": "HAProxy 2.8 LTS release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:2.8-lua-pkg-latest"
},
{
"id": "2.6-lua-pkg-latest",
"label": "HAProxy 2.6 LTS release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:2.6-lua-pkg-latest"
},
{
"id": "2.4-lua-pkg-latest",
"label": "HAProxy 2.4 LTS release branch with Lua scripting enabled.",
"image": "ghcr.io/daemonless/haproxy:2.4-lua-pkg-latest"
},
{
"id": "3.4-wolfssl-pkg-latest",
"label": "HAProxy 3.4 release branch built with WolfSSL TLS engine.",
"image": "ghcr.io/daemonless/haproxy:3.4-wolfssl-pkg-latest"
},
{
"id": "3.3-wolfssl-pkg-latest",
"label": "HAProxy 3.3 release branch built with WolfSSL TLS engine.",
"image": "ghcr.io/daemonless/haproxy:3.3-wolfssl-pkg-latest"
},
{
"id": "3.2-wolfssl-pkg-latest",
"label": "HAProxy 3.2 LTS release branch built with WolfSSL TLS engine.",
"image": "ghcr.io/daemonless/haproxy:3.2-wolfssl-pkg-latest"
},
{
"id": "3.0-wolfssl-pkg-latest",
"label": "HAProxy 3.0 LTS release branch built with WolfSSL TLS engine.",
"image": "ghcr.io/daemonless/haproxy:3.0-wolfssl-pkg-latest"
}
]
},
{
"id": "headscale",
"name": "Headscale",
"category": "Network",
"class": "service",
"icon": "/catalog/icons/headscale.svg",
"description": "An open source, self-hosted implementation of the Tailscale control server.",
"upstream_url": "https://github.com/juanfont/headscale",
"web_url": "https://headscale.net/",
"image": "ghcr.io/daemonless/headscale",
"manifest_url": "/catalog/manifests/headscale.yaml",
"version": "0.29.3",
"variants": [
{
"id": "latest",
"label": "Built from the official upstream FreeBSD release binary.",
"default": true,
"image": "ghcr.io/daemonless/headscale:latest",
"version": "0.29.3"
},
{
"id": "pkg",
"label": "Installed from the FreeBSD quarterly package repository.",
"image": "ghcr.io/daemonless/headscale:pkg",
"version": "0.27.1_9"
},
{
"id": "pkg-latest",
"label": "Installed from the FreeBSD latest package repository.",
"image": "ghcr.io/daemonless/headscale:pkg-latest",
"version": "0.27.1_9"
}
]
},
{
"id": "heimdall",
"name": "Heimdall",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/heimdall.svg",
"description": "An Application dashboard and launcher — organize all your web apps and services in one place.",
"upstream_url": "https://github.com/linuxserver/Heimdall",
"web_url": "https://heimdall.site/",
"image": "ghcr.io/daemonless/heimdall",
"manifest_url": "/catalog/manifests/heimdall.yaml",
"version": "v2.8.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/heimdall:latest",
"version": "v2.8.2"
}
]
},
{
"id": "home-assistant",
"name": "Home Assistant",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/home-assistant.svg",
"description": "Open source home automation that puts local control and privacy first.",
"upstream_url": "https://github.com/daemonless/home-assistant",
"web_url": "https://www.home-assistant.io/",
"image": "ghcr.io/daemonless/home-assistant",
"manifest_url": "/catalog/manifests/home-assistant.yaml",
"version": "2026.8.3",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/home-assistant:latest",
"version": "2026.8.3"
}
]
},
{
"id": "homepage",
"name": "Homepage",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/homepage.png",
"description": "Modern, fully static, fast, secure and highly customizable application dashboard with integrations for over 100 services.",
"upstream_url": "https://github.com/gethomepage/homepage",
"web_url": "https://gethomepage.dev/",
"image": "ghcr.io/daemonless/homepage",
"manifest_url": "/catalog/manifests/homepage.yaml",
"version": "2.1.2",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/homepage:latest",
"version": "2.1.2"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/homepage:pkg",
"version": "1.12.3"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/homepage:pkg-latest",
"version": "2.1.2"
}
]
},
{
"id": "hugo",
"name": "Hugo",
"category": "Development",
"class": "service",
"icon": "/catalog/icons/hugo.svg",
"description": "Fast and flexible static site generator — builds your entire site at creation time rather than on each request.",
"upstream_url": "https://github.com/gohugoio/hugo",
"web_url": "https://gohugo.io/",
"image": "ghcr.io/daemonless/hugo",
"manifest_url": "/catalog/manifests/hugo.yaml",
"version": "v0.165.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/hugo:latest",
"version": "v0.165.0"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/hugo:pkg",
"version": "0.163.3_3_1"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/hugo:pkg-latest",
"version": "0.165.0_2_1"
}
]
},
{
"id": "immich",
"name": "Immich",
"category": "Photos \u0026 Media",
"class": "stack",
"icon": "/catalog/icons/immich.svg",
"description": "High performance self-hosted photo and video management solution.",
"upstream_url": "https://github.com/immich-app/immich",
"web_url": "https://immich.app/",
"image": "ghcr.io/daemonless/immich-server",
"manifest_url": "/catalog/manifests/immich.yaml",
"version": "",
"variants": [
{
"id": "latest",
"label": "Latest",
"default": true,
"image": "ghcr.io/daemonless/immich-server:latest"
}
]
},
{
"id": "immich-ml",
"name": "Immich Machine Learning",
"category": "Photos \u0026 Media",
"class": "service",
"icon": "/catalog/icons/immich-ml.svg",
"description": "Machine learning service for Immich — handles facial recognition, image classification, and semantic search using ONNX models.",
"upstream_url": "https://github.com/immich-app/immich",
"web_url": "https://immich.app/",
"image": "ghcr.io/daemonless/immich-ml",
"manifest_url": "/catalog/manifests/immich-ml.yaml",
"version": "v3.1.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/immich-ml:latest",
"version": "v3.1.0"
}
]
},
{
"id": "immich-public-proxy",
"name": "Immich Public Proxy",
"category": "Photos \u0026 Media",
"class": "service",
"icon": "/catalog/icons/immich-public-proxy.svg",
"description": "Share Immich photos and albums publicly without exposing the Immich instance itself.",
"upstream_url": "https://github.com/alangrainger/immich-public-proxy",
"web_url": "https://github.com/alangrainger/immich-public-proxy",
"image": "ghcr.io/daemonless/immich-public-proxy",
"manifest_url": "/catalog/manifests/immich-public-proxy.yaml",
"version": "v3.0.1",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/immich-public-proxy:latest",
"version": "v3.0.1"
}
]
},
{
"id": "immich-server",
"name": "Immich Server",
"category": "Photos \u0026 Media",
"class": "service",
"icon": "/catalog/icons/immich-server.svg",
"description": "Self-hosted photo and video backup and management server with web UI, mobile sync, and shared albums.",
"upstream_url": "https://github.com/immich-app/immich",
"web_url": "https://immich.app/",
"image": "ghcr.io/daemonless/immich-server",
"manifest_url": "/catalog/manifests/immich-server.yaml",
"version": "v3.1.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/immich-server:latest",
"version": "v3.1.0"
}
]
},
{
"id": "jellyfin",
"name": "Jellyfin",
"category": "Media Servers",
"class": "service",
"icon": "/catalog/icons/jellyfin.svg",
"description": "Volunteer-built media solution that puts you in control — stream to any device from your own server, with no strings attached.",
"upstream_url": "https://github.com/jellyfin/jellyfin",
"web_url": "https://jellyfin.org/",
"image": "ghcr.io/daemonless/jellyfin",
"manifest_url": "/catalog/manifests/jellyfin.yaml",
"version": "10.11.11",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/jellyfin:pkg",
"version": "10.11.11"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/jellyfin:pkg-latest",
"version": "10.11.11"
}
]
},
{
"id": "jellyfin-ffmpeg",
"name": "Jellyfin FFmpeg",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/jellyfin-ffmpeg.svg",
"description": "FFmpeg with the Jellyfin patch set for HDR tone mapping (the SIMD-optimized\ntonemapx / libplacebo filters) on FreeBSD. Ships both the 7.x and 8.x lines:\n`jellyfin-ffmpeg` (= v7, the default) / `jellyfin-ffmpeg7` / `jellyfin-ffmpeg8`\n(and matching `*probe`) are all on PATH. Standalone CLI image, not a service.",
"upstream_url": "https://github.com/jellyfin/jellyfin-ffmpeg",
"web_url": "https://jellyfin.org/",
"image": "ghcr.io/daemonless/jellyfin-ffmpeg",
"manifest_url": "/catalog/manifests/jellyfin-ffmpeg.yaml",
"version": "7.1.4.3_1",
"variants": [
{
"id": "7",
"label": "7",
"default": true,
"image": "ghcr.io/daemonless/jellyfin-ffmpeg:7",
"version": "7.1.4.3_1"
},
{
"id": "8",
"label": "8",
"image": "ghcr.io/daemonless/jellyfin-ffmpeg:8",
"version": "8.1.2.2_1"
}
]
},
{
"id": "lidarr",
"name": "Lidarr",
"category": "Media Management",
"class": "service",
"icon": "/catalog/icons/lidarr.svg",
"description": "Music collection manager for Usenet and BitTorrent users — monitors RSS feeds, grabs, sorts, and renames tracks from your favorite artists.",
"upstream_url": "https://github.com/Lidarr/Lidarr",
"web_url": "https://lidarr.audio/",
"image": "ghcr.io/daemonless/lidarr",
"manifest_url": "/catalog/manifests/lidarr.yaml",
"version": "3.1.0.4875",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/lidarr:latest",
"version": "3.1.0.4875"
},
{
"id": "develop",
"label": "Develop branch",
"image": "ghcr.io/daemonless/lidarr:develop"
},
{
"id": "nightly",
"label": "Nightly branch",
"image": "ghcr.io/daemonless/lidarr:nightly"
},
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"image": "ghcr.io/daemonless/lidarr:pkg",
"version": "3.1.0.4875"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/lidarr:pkg-latest",
"version": "3.1.0.4875"
}
]
},
{
"id": "mariadb",
"name": "MariaDB",
"category": "Databases",
"class": "service",
"icon": "/catalog/icons/mariadb.svg",
"description": "Drop-in replacement for MySQL built by the original authors — extends core MySQL functionality with alternate storage engines, server optimizations, and patches.",
"upstream_url": "https://github.com/MariaDB/server",
"web_url": "https://mariadb.org/",
"image": "ghcr.io/daemonless/mariadb",
"manifest_url": "/catalog/manifests/mariadb.yaml",
"version": "12.3.2_1",
"variants": [
{
"id": "10.11-pkg-latest",
"label": "10.11-pkg-latest",
"image": "ghcr.io/daemonless/mariadb:10.11-pkg-latest",
"version": "10.11.18"
},
{
"id": "11.4-pkg-latest",
"label": "11.4-pkg-latest",
"image": "ghcr.io/daemonless/mariadb:11.4-pkg-latest",
"version": "11.4.12"
},
{
"id": "11.8-pkg-latest",
"label": "11.8-pkg-latest",
"image": "ghcr.io/daemonless/mariadb:11.8-pkg-latest",
"version": "11.8.8"
},
{
"id": "12.3-pkg-latest",
"label": "12.3-pkg-latest",
"default": true,
"image": "ghcr.io/daemonless/mariadb:12.3-pkg-latest",
"version": "12.3.2_1"
}
]
},
{
"id": "mealie",
"name": "Mealie",
"category": "Utilities",
"class": "service",
"icon": "/catalog/icons/mealie.svg",
"description": "Intuitive self-hosted recipe management app designed to be the best recipe management experience on the web.",
"upstream_url": "https://github.com/mealie-recipes/mealie",
"web_url": "https://mealie.io/",
"image": "ghcr.io/daemonless/mealie",
"manifest_url": "/catalog/manifests/mealie.yaml",
"version": "v3.24.0",
"variants": [
{
"id": "latest",
"label": "Upstream binary",
"default": true,
"image": "ghcr.io/daemonless/mealie:latest",
"version": "v3.24.0"
}
]
},
{
"id": "memcached",
"name": "Memcached",
"category": "Databases",
"class": "service",
"icon": "/catalog/icons/memcached.svg",
"description": "High-performance distributed memory object caching system for speeding up dynamic web applications by reducing database load.",
"upstream_url": "https://github.com/memcached/memcached",
"web_url": "https://memcached.org/",
"image": "ghcr.io/daemonless/memcached",
"manifest_url": "/catalog/manifests/memcached.yaml",
"version": "1.6.43",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/memcached:pkg",
"version": "1.6.43"
},
{
"id": "pkg-latest",
"label": "FreeBSD latest packages",
"image": "ghcr.io/daemonless/memcached:pkg-latest",
"version": "1.6.45"
}
]
},
{
"id": "navidrome",
"name": "Navidrome",
"category": "Media Servers",
"class": "service",
"icon": "/catalog/icons/navidrome.png",
"description": "Modern Music Server and Streamer compatible with Subsonic/Airsonic.",
"upstream_url": "https://www.navidrome.org/",
"web_url": "https://www.navidrome.org/",
"image": "ghcr.io/daemonless/navidrome",
"manifest_url": "/catalog/manifests/navidrome.yaml",
"version": "0.62.0_3",
"variants": [
{
"id": "pkg",
"label": "FreeBSD quarterly packages",
"default": true,
"image": "ghcr.io/daemonless/navidrome:pkg",