<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Product Impossible</title>
    <description>The latest articles on DEV Community by Product Impossible (@productimpossible).</description>
    <link>https://dev.to/productimpossible</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F13065%2F5f360e2e-f438-4198-9589-652fdd044a06.png</url>
      <title>DEV Community: Product Impossible</title>
      <link>https://dev.to/productimpossible</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/productimpossible"/>
    <language>en</language>
    <item>
      <title>Self-hosted S3 after MinIO: lightweight alternatives for 2026</title>
      <dc:creator>Seba Kubisz</dc:creator>
      <pubDate>Sat, 02 May 2026 09:44:25 +0000</pubDate>
      <link>https://dev.to/productimpossible/self-hosted-s3-after-minio-lightweight-alternatives-for-2026-2jl0</link>
      <guid>https://dev.to/productimpossible/self-hosted-s3-after-minio-lightweight-alternatives-for-2026-2jl0</guid>
      <description>&lt;p&gt;On April 25, 2026, the &lt;a href="https://github.com/minio/minio" rel="noopener noreferrer"&gt;&lt;code&gt;minio/minio&lt;/code&gt; GitHub repository was archived&lt;/a&gt;. The Reddit and Hacker News reactions framed it as the death of MinIO. That framing is wrong in a useful way.&lt;/p&gt;

&lt;p&gt;MinIO the company is not dead. It has $126M in funding, an enterprise product, and paying customers. What ended on April 25 was the public head-stone on something that had already been buried over the previous eleven months: the practical use of MinIO as a free, self-hosted, S3-compatible object store. The archive is the ceremony. The substantive closing happened in May 2025, when the admin web UI was stripped out of the community edition.&lt;/p&gt;

&lt;p&gt;For a self-hoster who needed an S3 endpoint for their backups, their photo app, or their self-hosted Mastodon — and there are a lot of those people — the question is no longer "what is MinIO doing." It is "what now."&lt;/p&gt;

&lt;p&gt;This is a guide for that audience. It focuses on lightweight, single-node S3-compatible storage. It is not a Petabyte-scale enterprise architecture comparison; the existing comparison guides cover that ground well, and the small-scale self-hosted use case is different enough to deserve its own pass.&lt;/p&gt;

&lt;p&gt;Three deployment shapes share this need and this article applies to all of them. The first is the homelab — a NAS or small server running on local hardware, often behind a residential connection. The second is the VPS self-hoster — a stack running on a virtualized box at Hetzner, OVH, Vultr, or similar, typically with a few hundred GB of attached storage. The third is the rented dedicated server — Hetzner Server Auction, OVH Kimsufi, Scaleway Dedibox, and the rest — which is increasingly popular for self-hosting precisely because it delivers multi-TB local disk and generous bandwidth at prices that VPS plans cannot match. The capability requirements are essentially identical across all three; the deployment context differs (network locality, disk economics, geographic distribution, egress pricing), but the right tool largely does not.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a self-hosted setup needs an S3 endpoint at all
&lt;/h2&gt;

&lt;p&gt;The Reddit thread that prompted this article opened with a confused beginner question: &lt;em&gt;"Maybe a dumb question, but where exactly would you use this in a typical homelab setup?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;It is not a dumb question. The answer is that the S3 API has quietly become the default storage interface for a generation of self-hosted tools. When you read that an app supports "object storage" or "S3-compatible storage," it usually means the app speaks the same HTTP API that AWS S3 introduced in 2006. Once a tool speaks that API, it does not particularly care whether the bytes land at AWS, at Backblaze B2, at Cloudflare R2, or at a binary running on the NAS in your basement or on the VPS you rent.&lt;/p&gt;

&lt;p&gt;The list of self-hosted tools that expect an S3 endpoint is long and getting longer. Backup tools — restic, Kopia, Borgmatic, duplicati — all use S3 as a first-class backend. Photo management — Immich, PhotoPrism, Ente — supports S3 for original storage. Nextcloud can be backed by S3 instead of disk. Mastodon stores media on S3. Self-hosted analytics tools (Plausible, PostHog) emit event data to S3. Kubernetes clusters use S3 for &lt;code&gt;volsync&lt;/code&gt;, for &lt;code&gt;velero&lt;/code&gt; cluster backups, for Loki log storage, for Mimir metrics. CI runners, build caches, container registries — all S3-shaped under the hood.&lt;/p&gt;

&lt;p&gt;For most of the past five years, the way to get an S3 endpoint on your own infrastructure — whether that meant a homelab on local hardware or a stack on a rented VPS — was to run MinIO in a Docker container. It was the obvious choice. It is no longer. So this article exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  How MinIO got here
&lt;/h2&gt;

&lt;p&gt;The detail that matters most in MinIO's timeline is that the closing of the free self-hosted path took &lt;strong&gt;eleven months from inflection to archive&lt;/strong&gt;, and the inflection happened nearly a year before most people noticed. Reading the commit history of the archived repository, the slow-motion arc is unmistakable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;April 2021.&lt;/strong&gt; MinIO relicensed from Apache 2.0 to GNU AGPL v3. At the time, this was framed as cleanup — the company had been operating with a mixed-license model and wanted simplification. AGPL v3 also created legal leverage: companies that embedded MinIO in proprietary products without contributing back now had a copyleft obligation, which the company could relax by selling a commercial license. Binaries were still freely usable for self-hosted use. The community largely accepted the change.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2022 to 2024.&lt;/strong&gt; License-enforcement actions began. The atmosphere shifted in ways that did not show up in any individual release.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;May 2025.&lt;/strong&gt; The inflection. The MinIO Console — the web UI used by basically every self-hosted MinIO operator to manage buckets, accounts, policies, lifecycle rules, configuration, and replication — was &lt;a href="https://www.blocksandfiles.com/ai-ml/2025/06/19/minio-users-complain-after-admin-ui-removed-from-community-edition/1610856" rel="noopener noreferrer"&gt;removed from the community edition&lt;/a&gt; and reduced to a read-only object browser. The release notes treated it as a routine deprecation. The community did not. A long Hacker News thread, &lt;a href="https://github.com/minio/minio/discussions/21326" rel="noopener noreferrer"&gt;a pinned GitHub discussion&lt;/a&gt;, and several Reddit threads framed the change as a bait-and-switch. By May 25, 2025, a fork called &lt;a href="https://github.com/OpenMaxIO/openmaxio-object-browser" rel="noopener noreferrer"&gt;OpenMaxIO&lt;/a&gt; appeared, restoring the removed UI features. From this point onward, the community version of MinIO was meaningfully crippled for the self-hosted use case it had been adopted for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;October 15, 2025.&lt;/strong&gt; The repository's last functional release: &lt;code&gt;RELEASE.2025-10-15T17-29-55Z&lt;/code&gt;, a security and CVE patch. After this date, no further binary releases were tagged on the community track.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;October 2025.&lt;/strong&gt; Pre-built binary and Docker distributions were halted on the public track. Operators could still build from source, but the friction was meaningful — and a &lt;code&gt;pgsty/minio&lt;/code&gt; fork appeared to package binaries from the last known-good source.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;November 6, 2025.&lt;/strong&gt; The last code commit to the archived repository: a small documentation cleanup ("Drop v3 metrics from community docs"). After this, every commit was a README edit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;December 3, 2025.&lt;/strong&gt; The README was updated to declare "maintenance mode" — security fixes only, no new features.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;February 12, 2026.&lt;/strong&gt; The README was updated again to "clarify state of the project," language read by most observers as an effective end-of-life. (Several news write-ups from this period mistakenly treated this README change as the archive itself; the repository remained writable.)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;April 25, 2026.&lt;/strong&gt; The repository was formally archived. Read-only. No further commits accepted.&lt;/p&gt;

&lt;p&gt;The interesting thing about this arc is the asymmetry between when the meaningful change happened and when most coverage noticed it. By the time the Reddit and Hacker News threads about the April 25 archive went up, the substantive product change was nearly a year old. Most operators who paid attention had already migrated. The April 25 event was, for them, formal confirmation of a decision they had already made.&lt;/p&gt;

&lt;p&gt;This pattern is worth recognizing. The death of an open-core product is rarely a single dramatic event. It is a sequence of small, individually defensible decisions — a license clarification, a feature deprecation, a binary distribution change — each accompanied by a corporate blog post explaining why this one is no big deal. The commit history is the only honest narrator. The earliest leading indicator is usually a feature being removed from the free tier with the explanation that the feature was "really" enterprise all along.&lt;/p&gt;

&lt;p&gt;This is the same pattern documented in &lt;a href="https://dev.to/review/lifetime-subscriptions-trap/"&gt;Lifetime subscriptions don't mean what you think they mean&lt;/a&gt; and &lt;a href="https://dev.to/review/app-expiration-date/"&gt;Every app you buy has an expiration date&lt;/a&gt; — the structural reality that long-term promises in software depend on whether the underlying business model still supports them. When the business model changes, the promises do too.&lt;/p&gt;

&lt;h2&gt;
  
  
  The lightweight self-hosted landscape
&lt;/h2&gt;

&lt;p&gt;The self-hosted S3 alternatives that matter at small scale divide into a few clean categories. Below, each option is evaluated on the axes that actually predict whether it will be a sensible choice in two years: who maintains it, how the project is funded, what licensing risk it carries for your particular use case, and what its current security posture looks like. Stars and benchmark numbers, the metrics most other comparison articles lead with, are deliberately not the headline here.&lt;/p&gt;

&lt;h3&gt;
  
  
  Garage — the small-scale self-hosted default
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;License:&lt;/strong&gt; AGPL v3 · &lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://garagehq.deuxfleurs.fr/" rel="noopener noreferrer"&gt;garagehq.deuxfleurs.fr&lt;/a&gt; (GitHub mirror: 3,603 stars as of April 2026) · &lt;strong&gt;Latest release:&lt;/strong&gt; v2.3.0, April 16, 2026&lt;/p&gt;

&lt;p&gt;Garage is built by &lt;a href="https://deuxfleurs.fr/" rel="noopener noreferrer"&gt;Deuxfleurs&lt;/a&gt;, a small French collective that runs a federated hosting cooperative. It is the option most often recommended in self-hosted communities post-MinIO, and the recommendation has held up in the months since the May 2025 inflection.&lt;/p&gt;

&lt;p&gt;The design choices are aimed at exactly the small-scale self-hosted profile. Garage is a single Go binary plus a config file. It does not require Docker, Kubernetes, or any external dependency. It runs comfortably on modest hardware — a Raspberry Pi 4 is sufficient for personal use, a small VPS handles single-node deployments without strain, and a Hetzner-auction-class dedicated server with multi-TB local disk is one of the natural homes for the project. The geo-distributed replication that is Garage's headline feature works as well across two physical sites or two rented boxes in different regions as across two folders on the same machine. The S3 API surface covers what most personal tools need: PUT, GET, multipart upload, presigned URLs, basic IAM. Setup is genuinely under thirty minutes for a single-node deployment.&lt;/p&gt;

&lt;p&gt;The caveats are worth knowing before you commit. Garage uses &lt;strong&gt;full duplication&lt;/strong&gt; rather than erasure coding for data redundancy, which means a 3-node replicated deployment uses 3× the underlying disk for each stored byte. For personal volumes this is fine; at TB scale it becomes meaningful, particularly on metered VPS storage (less so on a dedicated box where local disk is cheap). Garage &lt;strong&gt;does not implement S3 Object Lock&lt;/strong&gt;, which matters if you use restic or Kopia and rely on bucket-level immutability for ransomware-resistance. And the &lt;strong&gt;AGPL v3 license&lt;/strong&gt; is something to read carefully if you intend to embed Garage in a product you distribute — the copyleft obligations attach even to network use. For pure personal self-hosted operation, AGPL has no practical impact.&lt;/p&gt;

&lt;p&gt;The project has 83 GitHub contributors and a steady, unhurried release cadence — v1.0 shipped April 2024, v2.0 in June 2025, v2.3.0 in April 2026 — which reads as deliberate engineering rather than a feature treadmill.&lt;/p&gt;

&lt;h3&gt;
  
  
  Versity S3 Gateway — when you already have a filesystem
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;License:&lt;/strong&gt; Apache 2.0 · &lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/versity/versitygw" rel="noopener noreferrer"&gt;github.com/versity/versitygw&lt;/a&gt; (2,256 stars, 244 forks, 44 contributors as of April 2026) · &lt;strong&gt;Latest release:&lt;/strong&gt; v1.4.1, April 22, 2026&lt;/p&gt;

&lt;p&gt;Versity Software is a long-running storage-software company founded in 2011. The Versity S3 Gateway (versitygw) is their open-source project, started in 2023, that solves a specific problem: it puts an S3 API in front of any existing POSIX filesystem. If your bytes already live on a ZFS pool, an EXT4 disk, or a CephFS mount, versitygw turns that storage into an S3 endpoint without moving the data.&lt;/p&gt;

&lt;p&gt;This is a different philosophy than Garage's. Garage owns its on-disk format and treats objects as a distinct type of storage. Versity is a translation layer; the bytes on disk are still files, browseable with &lt;code&gt;ls&lt;/code&gt;. For operators who already have their files organized on a NAS, on a mounted block-storage volume, or on any other POSIX directory, and just need an S3 façade for an Immich or a restic that demands one, this is often the right answer.&lt;/p&gt;

&lt;p&gt;The release cadence is roughly monthly — v1.2.0 in February 2026, v1.3.0 in March, v1.4.1 in late April — which is brisk for a 1.x stable line. Versity gets less attention than Garage in self-hosted forums but consistently shows up as a recommendation on Lobsters and from operators who want minimal abstraction. Apache 2.0 licensing makes it embeddable without copyleft obligations.&lt;/p&gt;

&lt;h3&gt;
  
  
  RustFS — the closest visual MinIO replacement, with caveats
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;License:&lt;/strong&gt; Apache 2.0 · &lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/rustfs/rustfs" rel="noopener noreferrer"&gt;github.com/rustfs/rustfs&lt;/a&gt; (26,470 stars, 100+ contributors as of April 2026) · &lt;strong&gt;Latest release:&lt;/strong&gt; v1.0.0-alpha.99, April 25, 2026&lt;/p&gt;

&lt;p&gt;RustFS is the option that comes up first if your search terms are "MinIO replacement with web UI," because it is the project that most explicitly sets out to be that. It is written in Rust, ships under Apache 2.0, and includes a management web interface that visually resembles the pre-deprecation MinIO Console. For operators who built workflows around the MinIO UI and resent having to give it up, RustFS is the obvious target.&lt;/p&gt;

&lt;p&gt;The first thing to weigh against that is the project's own version label. As of April 2026 — roughly two and a half years after development began — RustFS is still releasing under the &lt;code&gt;1.0.0-alpha.X&lt;/code&gt; tag, currently on alpha 99. Distributed mode is not yet officially released. The release cadence is aggressive: alpha 95 through alpha 99 shipped in six days. By its own versioning, the project has not declared production-readiness.&lt;/p&gt;

&lt;p&gt;The security advisory record is consistent with that alpha label. Between December 2025 and April 2026, the project disclosed thirteen advisories on its GitHub Security Advisories page. The class of issues is the part worth knowing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;December 30, 2025: hardcoded gRPC token authentication bypass (medium)&lt;/li&gt;
&lt;li&gt;January 7, 2026: path traversal vulnerability (high)&lt;/li&gt;
&lt;li&gt;January 8, 2026: two IAM authorization issues enabling privilege escalation&lt;/li&gt;
&lt;li&gt;February 24, 2026: stored XSS in the preview modal leading to administrative account takeover (&lt;strong&gt;critical&lt;/strong&gt;)&lt;/li&gt;
&lt;li&gt;February 24, 2026: missing post-policy validation enabling arbitrary object writes (high)&lt;/li&gt;
&lt;li&gt;April 7, 2026: cross-bucket object exfiltration via multipart upload bypass (medium)&lt;/li&gt;
&lt;li&gt;April 22 and 25, 2026: two further authorization bypass advisories&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A note on interpretation. Raw advisory counts across projects are not directly comparable: high-profile projects attract more security research attention than smaller ones. Versity S3 Gateway has disclosed one advisory in its three-year history, and Garage and SeaweedFS have disclosed none, but those projects also receive less researcher scrutiny than RustFS does. What is genuinely informative is the combination of the project's own alpha label, the rapid pre-1.0 release cadence, and the fact that the disclosed issues include authorization bypasses and a critical administrative-takeover path — all of which the project, by tagging the release &lt;code&gt;alpha&lt;/code&gt;, is acknowledging is normal for its current stage.&lt;/p&gt;

&lt;p&gt;For a deployment where the data is recoverable from another source and the threat model is single-tenant trusted, RustFS is fine; the dashboard is genuinely useful and fast. For a deployment where the data is the canonical copy — and especially for any VPS-hosted instance with an internet-facing endpoint — the prudent read is to honor the project's own labeling and wait for a stable 1.0 with a slower disclosure rhythm before adopting.&lt;/p&gt;

&lt;h3&gt;
  
  
  SeaweedFS — the scale-up path
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;License:&lt;/strong&gt; Apache 2.0 · &lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/seaweedfs/seaweedfs" rel="noopener noreferrer"&gt;github.com/seaweedfs/seaweedfs&lt;/a&gt; (31,746 stars as of April 2026) · &lt;strong&gt;Latest release:&lt;/strong&gt; v4.21, April 19, 2026&lt;/p&gt;

&lt;p&gt;SeaweedFS is twelve years old, has hundreds of contributors, and was &lt;a href="https://github.com/kubeflow/pipelines" rel="noopener noreferrer"&gt;adopted by Kubeflow Pipelines&lt;/a&gt; as the default object storage backend in the wake of MinIO's retreat. It is the option to choose if you suspect your deployment is going to outgrow a single binary within the next two years, or if you are already operating at multi-TB scale and want a system that has been hardened over a long period.&lt;/p&gt;

&lt;p&gt;The tradeoff is operational complexity. SeaweedFS exposes more concepts (master server, volume servers, filer, S3 gateway, optionally a Mount filer) than Garage or Versity. A "just works" single-node deployment is achievable but requires more configuration. The release cadence is weekly or near-weekly, which is healthy for a mature project but produces a lot of upgrade events.&lt;/p&gt;

&lt;p&gt;For most self-hosters starting from scratch in 2026, SeaweedFS is overkill on day one but the right answer if the deployment grows. It is also the safest pick licensing-wise (Apache 2.0) for anyone considering embedding S3 storage in a product they distribute.&lt;/p&gt;

&lt;h3&gt;
  
  
  Ceph RGW, rclone serve s3, and the pgsty/minio fork — briefly
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Ceph&lt;/strong&gt; with its RADOS Gateway (RGW) is the production-grade enterprise answer to S3 self-hosting. It is also genuinely overkill for any small-scale self-hosted use case; the setup complexity, hardware requirements, and operational overhead are sized for environments where someone is paid full-time to run them. If you are reading this article, Ceph is probably not your answer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;rclone serve s3&lt;/code&gt;&lt;/strong&gt; turns rclone, the cross-cloud sync tool, into an S3 server backed by a local directory. It is excellent for development and testing — useful when you want to point a tool at "an S3 endpoint" and verify that it speaks S3 correctly without committing to anything heavier. It is not designed as a production storage backend; treat it as a fixture.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;&lt;code&gt;pgsty/minio&lt;/code&gt; community fork&lt;/strong&gt;, created October 25, 2025 in response to the binary distribution halt, is the closest thing to "MinIO without the company." It packages the last known-good MinIO source, applies CVE patches, and continues to issue builds (last update April 17, 2026). It has 1,375 stars — modest, but it is the natural fallback for operators with deep MinIO operational muscle memory who do not want to migrate. The structural risk is the same risk that applies to any single-maintainer fork of an upstream that has stopped contributing: it lives or dies on one person's continued attention, and the upstream code base is no longer being improved.&lt;/p&gt;

&lt;p&gt;A second fork, &lt;strong&gt;OpenMaxIO&lt;/strong&gt;, appeared in May 2025 to restore the removed admin UI. Its repository has not seen a push since June 24, 2025; treat it as effectively dormant.&lt;/p&gt;

&lt;h2&gt;
  
  
  Picking one
&lt;/h2&gt;

&lt;p&gt;The decision usually collapses to a small number of axes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;You want the closest thing to MinIO with a familiar web UI&lt;/strong&gt;, and you can live with alpha-quality and an active CVE stream. → &lt;strong&gt;RustFS&lt;/strong&gt;, with the security posture in mind.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You want a single binary, a config file, and a project that does not move faster than it can review itself.&lt;/strong&gt; → &lt;strong&gt;Garage&lt;/strong&gt;, accepting the AGPL v3 implications and the lack of S3 Object Lock.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Your bytes already live on a filesystem and you just need an S3 façade in front of them.&lt;/strong&gt; → &lt;strong&gt;Versity S3 Gateway&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You expect to outgrow a single binary in the next 18 months&lt;/strong&gt;, or you are already at multi-TB scale. → &lt;strong&gt;SeaweedFS&lt;/strong&gt; from day one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You operate enterprise infrastructure and you have a team&lt;/strong&gt;. → &lt;strong&gt;Ceph RGW&lt;/strong&gt;, and you are reading the wrong article.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You have years of MinIO operational experience and migrating to a new stack is more disruptive than continuing on a frozen code base&lt;/strong&gt; → the &lt;strong&gt;&lt;code&gt;pgsty/minio&lt;/code&gt; fork&lt;/strong&gt;, with awareness that the upstream is gone.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For most readers of this article, the headline pick is Garage. It is the option that best matches what MinIO was originally adopted for: a small, boring, S3-shaped binary that sits quietly in a corner of your stack and works — whether that corner is a NAS in your basement, a small VPS, or a Hetzner auction box in Falkenstein.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to check before migrating
&lt;/h2&gt;

&lt;p&gt;Migrations between S3-compatible backends are usually straightforward — point your tool at the new endpoint, replay the data, update the credentials — but a few capability differences are worth checking against your actual use case before you start.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Object Lock and immutability.&lt;/strong&gt; If you use restic or Kopia and rely on S3 Object Lock for ransomware-resistance, Garage does not currently support this and Versity's support is partial. SeaweedFS and the MinIO fork do. Confirm before migrating a backup target.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Versioning.&lt;/strong&gt; Bucket versioning is supported across all the alternatives but the exact semantics differ at the edges. If your tool depends on versioning behavior (some Kubernetes operators do), test in a staging bucket first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Multipart upload limits.&lt;/strong&gt; The S3 multipart spec allows up to 10,000 parts and 5 TiB objects. Most alternatives implement these limits faithfully but a few cap part size more aggressively. Check if you are storing large objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IAM and bucket policies.&lt;/strong&gt; All four alternatives implement enough IAM to issue access keys and define basic per-bucket permissions. None implements the full AWS policy DSL. If your tool uses scoped IAM users with fine-grained policies, plan to translate the policies to the simpler model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Public-bucket support.&lt;/strong&gt; If you use S3 as a static asset CDN, confirm public-read bucket policies work and that pre-signed URL semantics match what your application generates.&lt;/p&gt;

&lt;p&gt;A practical migration writeup that captures the texture of moving from MinIO to Garage in a personal-photo-storage context is &lt;a href="https://github.com/OPUM-LABS/Manuals/blob/main/Ente%20Photos%2Fmigrate-from-minio-to-garage.md" rel="noopener noreferrer"&gt;this OPUM-LABS guide&lt;/a&gt;, shared in the r/selfhosted thread that prompted this article. It is specific to Ente Photos but the shape of the migration generalizes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;The end of MinIO as a free self-hosted option is not the death of self-hosted S3. The replacements exist, they are healthier, and several of them are better aligned with the small-scale self-hosted use case than MinIO ever was — a small binary, a config file, a single thing that does object storage without trying to also be an enterprise platform.&lt;/p&gt;

&lt;p&gt;The lesson worth carrying forward is the one the timeline tells. The closing of MinIO's free self-hosted path took eleven months and was visible in the commit history nearly a year before most people noticed. The same pattern is currently underway in adjacent open-core categories. The signs to watch for are consistent: a feature being removed from the free tier with the explanation that it was "really" enterprise; a binary distribution channel being deprecated in favor of "build it yourself"; a release cadence that quietly slows; a README that subtly clarifies the project's "state."&lt;/p&gt;

&lt;p&gt;When you choose a self-hosted tool, the question is not only "is this good today" but "is the funding model under which this exists going to support its current free-tier promise three years from now." For S3-compatible storage in 2026, the safest answers to that question are Garage and SeaweedFS — both built by entities whose survival does not depend on extracting commercial revenue from the same artifact you are running. That is a less exciting headline than benchmark numbers, and it is probably the more useful one.&lt;/p&gt;

</description>
      <category>selfhosted</category>
      <category>opensource</category>
      <category>devops</category>
      <category>docker</category>
    </item>
    <item>
      <title>Lifetime subscriptions don't mean what you think they mean</title>
      <dc:creator>Seba Kubisz</dc:creator>
      <pubDate>Wed, 22 Apr 2026 18:17:03 +0000</pubDate>
      <link>https://dev.to/productimpossible/lifetime-subscriptions-dont-mean-what-you-think-they-mean-1hg7</link>
      <guid>https://dev.to/productimpossible/lifetime-subscriptions-dont-mean-what-you-think-they-mean-1hg7</guid>
      <description>&lt;p&gt;You see a tool you like. It offers a "lifetime deal" for $59. Pay once, use forever. Sounds great — until "forever" turns out to mean 18 months.&lt;/p&gt;

&lt;p&gt;The uncomfortable truth: in nearly every Terms of Service, "lifetime" refers to the &lt;strong&gt;lifetime of the product&lt;/strong&gt;, not yours. And products die all the time.&lt;/p&gt;

&lt;p&gt;Here are 11 real examples of what happens when lifetime deals end early.&lt;/p&gt;

&lt;h2&gt;
  
  
  The graveyard of lifetime deals
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Wondershare Filmora — the version trick
&lt;/h3&gt;

&lt;p&gt;Filmora sold "lifetime" licenses for $59.99. When version 14 launched in 2022, they told customers their "lifetime" license only covered the version they bought — not future versions. When YouTuber EposVox covered the story, Filmora hit him with a DMCA takedown. They eventually apologized, but a class action lawsuit was filed in February 2024.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the next major version.&lt;/p&gt;

&lt;h3&gt;
  
  
  VPNSecure — new owner, no honor
&lt;/h3&gt;

&lt;p&gt;On April 28, 2025, VPNSecure's new owners emailed all lifetime subscribers: your plan is canceled. Their reason? They "didn't know about" the lifetime deals when they acquired the company. Customers who paid for permanent access were offered a discounted annual plan instead.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the acquisition.&lt;/p&gt;

&lt;h3&gt;
  
  
  Ivacy VPN — "lifetime means 5 years"
&lt;/h3&gt;

&lt;p&gt;Ivacy VPN quietly redefined "lifetime" in their terms to mean 5 years — "the lifecycle of the software." When customers complained, support pointed them to the fine print. The company was later acquired by PureVPN.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; 5 years, by their definition.&lt;/p&gt;

&lt;h3&gt;
  
  
  SiriusXM — $96 million mistake
&lt;/h3&gt;

&lt;p&gt;SiriusXM sold "lifetime" satellite radio subscriptions, then claimed "lifetime" referred to the device's lifetime, not the subscriber's. When your car radio died, so did your subscription. A class action followed, and SiriusXM settled for $96 million in 2021.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the hardware broke.&lt;/p&gt;

&lt;h3&gt;
  
  
  LeadCart — took the money and disappeared
&lt;/h3&gt;

&lt;p&gt;LeadCart sold lifetime deals ranging from $300 to $1,000 through AppSumo. They collected hundreds of thousands of dollars. In January 2022, the platform shut down entirely. No refunds, no migration path, no warning.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Months to ~2 years.&lt;/p&gt;

&lt;h3&gt;
  
  
  Gyana — three months
&lt;/h3&gt;

&lt;p&gt;Gyana, a data analytics platform, sold lifetime deals on AppSumo. The platform shut down just three months after some customers purchased. The product simply ceased to exist.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; 3 months.&lt;/p&gt;

&lt;h3&gt;
  
  
  ChatPlayground AI — AI costs caught up
&lt;/h3&gt;

&lt;p&gt;ChatPlayground AI sold lifetime access through AppSumo, then revoked all lifetime deals in 2025. Their explanation: AI API costs made it unsustainable. They asked users to repurchase at $875. The original deal was a fraction of that price.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the API bills got too high.&lt;/p&gt;

&lt;h3&gt;
  
  
  iBrave Hosting — sold until the end
&lt;/h3&gt;

&lt;p&gt;iBrave offered "lifetime" web hosting through StackSocial. The company shut down on November 1, 2024. StackSocial was still actively selling the "lifetime" deal less than 20 days before closure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until shutdown — and they were still selling it days before.&lt;/p&gt;

&lt;h3&gt;
  
  
  Wope — the silent death
&lt;/h3&gt;

&lt;p&gt;Wope, an SEO tool sold through AppSumo, simply went silent in 2025. The team stopped responding, the product stopped being maintained, and there was no formal shutdown announcement. Users were left with a tool that slowly stopped working.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the team gave up.&lt;/p&gt;

&lt;h3&gt;
  
  
  Supermetrics — bootstrapped on your money, then pulled the rug
&lt;/h3&gt;

&lt;p&gt;Supermetrics sold lifetime deals on AppSumo in 2017 for their marketing data connector tool. Early supporters helped bootstrap the company. By 2020, Supermetrics had grown significantly and raised VC funding — then revoked all lifetime deals, migrating users to annual plans with a "discounted" rate. The early buyers who helped fund the company's growth were the first ones cut.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; ~3 years, until the company outgrew you.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pocket Casts — free, then subscription
&lt;/h3&gt;

&lt;p&gt;Pocket Casts was a popular paid podcast app. In 2019, it went free and introduced new cloud features behind a subscription (Pocket Casts Plus). To their credit, users who originally paid for the app were given lifetime access to Plus. But the shift from paid-upfront to freemium-with-subscription still caught many off guard — and not every company handles the transition this gracefully.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Ongoing, but the deal changed shape.&lt;/p&gt;

&lt;h3&gt;
  
  
  Timepage by Moleskine — "complimentary access"
&lt;/h3&gt;

&lt;p&gt;Timepage was a premium calendar app sold as a one-time purchase. Moleskine converted it to a subscription model and gave existing users "complimentary" access — which they called a "limited-time offer." Pay once, use forever became pay once, get a temporary grace period.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lifetime lasted:&lt;/strong&gt; Until the subscription model looked more profitable.&lt;/p&gt;

&lt;h2&gt;
  
  
  The math doesn't work
&lt;/h2&gt;

&lt;p&gt;About &lt;strong&gt;40% of AppSumo lifetime deals fail within 3 years&lt;/strong&gt;, according to community analyses. AppSumo's own revenue dropped 50% over 2024-2025 as the marketplace model showed its cracks.&lt;/p&gt;

&lt;p&gt;The economics are simple: AppSumo takes up to 70% of the deal revenue. A $59 lifetime deal nets the developer ~$18 per customer. That customer then uses the product — and its servers, support, and infrastructure — indefinitely. The more successful the deal, the faster the company burns through cash.&lt;/p&gt;

&lt;p&gt;One prolific lifetime deal buyer documented losing access to over 100 products after spending six figures on deals over several years.&lt;/p&gt;

&lt;h2&gt;
  
  
  Red flags to watch for
&lt;/h2&gt;

&lt;p&gt;Before buying a lifetime deal, check for these:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Early-stage startup with no other revenue.&lt;/strong&gt; If the lifetime deal is their primary funding, the math will catch up.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;High ongoing costs.&lt;/strong&gt; AI tools, hosting services, and anything with per-user infrastructure costs are especially risky.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No clear business model beyond the deal.&lt;/strong&gt; If you can't see how they'll make money after the promotion ends, they probably can't either.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sold through a marketplace&lt;/strong&gt; (AppSumo, StackSocial) where the platform takes a massive cut.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vague ToS about what "lifetime" means.&lt;/strong&gt; If they don't define it, they'll define it later — in their favor.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  When lifetime deals actually work
&lt;/h2&gt;

&lt;p&gt;Not all lifetime deals are traps. They work best when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The product is &lt;strong&gt;mature and profitable&lt;/strong&gt; with an existing subscriber base (the deal is marketing, not funding)&lt;/li&gt;
&lt;li&gt;Marginal cost per user is &lt;strong&gt;near zero&lt;/strong&gt; (desktop software, offline tools)&lt;/li&gt;
&lt;li&gt;The company has &lt;strong&gt;other revenue streams&lt;/strong&gt; and isn't dependent on deal income&lt;/li&gt;
&lt;li&gt;The deal is sold &lt;strong&gt;directly&lt;/strong&gt; by the company, not through a marketplace that takes 70%&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Bottom line
&lt;/h2&gt;

&lt;p&gt;"Lifetime" in software means the product's lifetime, not yours. Courts have consistently upheld this interpretation. Before you buy, ask yourself: will this product exist in 3 years? If you're not confident, a monthly subscription you can cancel is cheaper than a lifetime deal you'll lose.&lt;/p&gt;

&lt;p&gt;The best deal is a product that's still around when you need it.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>startup</category>
      <category>saas</category>
      <category>productivity</category>
    </item>
    <item>
      <title>5 self-hosted ebook managers worth trying in 2026</title>
      <dc:creator>Seba Kubisz</dc:creator>
      <pubDate>Fri, 17 Apr 2026 17:40:05 +0000</pubDate>
      <link>https://dev.to/productimpossible/5-self-hosted-ebook-managers-worth-trying-in-2026-59hn</link>
      <guid>https://dev.to/productimpossible/5-self-hosted-ebook-managers-worth-trying-in-2026-59hn</guid>
      <description>&lt;p&gt;If you're looking for a self-hosted way to manage your ebook collection, there are more good options than ever. Whether you want a simple web frontend for your Calibre library, a full-featured manga reader, or an audiobook server with mobile apps, there's something here for you.&lt;/p&gt;

&lt;p&gt;Here are five tools worth considering — each with a different focus.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Calibre-Web — best for existing Calibre users
&lt;/h2&gt;

&lt;p&gt;If you already manage your ebooks in Calibre, this is the easiest path. Calibre-Web puts a clean browser interface on top of your existing Calibre database. You get OPDS feeds, Kobo sync, send-to-Kindle, and multi-user support without changing your workflow.&lt;/p&gt;

&lt;p&gt;The tradeoff: you need an existing Calibre library — you can't build one from scratch in the web UI. Performance can also slow down past ~20,000 books. But if you're already a Calibre user, nothing else comes close in terms of compatibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Supports:&lt;/strong&gt; EPUB, PDF, MOBI, AZW3, and 50+ formats via Calibre conversion&lt;br&gt;
&lt;strong&gt;Deploy:&lt;/strong&gt; Docker (LinuxServer.io image) · &lt;a href="https://github.com/janeczku/calibre-web" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; · 16.7k stars&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Kavita — best all-in-one reading server
&lt;/h2&gt;

&lt;p&gt;Kavita is the most versatile option. It handles ebooks, manga, comics, and light novels in a single app — no Calibre dependency required. Point it at your files and it auto-organizes everything into series.&lt;/p&gt;

&lt;p&gt;The built-in reader supports single page, dual page, and webtoon scroll modes. You get reading progress sync across devices, full-text search, smart filters, and OIDC authentication. There's an optional &lt;strong&gt;Kavita+&lt;/strong&gt; subscription ($4/month as of April 2026, $2 first month) that adds AniList/MAL progress scrobbling, external reviews and ratings, recommendations, MAL stack import, and metadata download — though metadata download is currently manga/light-novel only; book and comic metadata support is planned. The core app is fully functional without it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Supports:&lt;/strong&gt; EPUB, PDF, CBZ, CBR, CB7, image folders&lt;br&gt;
&lt;strong&gt;Deploy:&lt;/strong&gt; Docker · &lt;a href="https://www.kavitareader.com/" rel="noopener noreferrer"&gt;kavitareader.com&lt;/a&gt; · 10.1k stars&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Komga — best for comics and manga
&lt;/h2&gt;

&lt;p&gt;If your collection is primarily comics or manga, Komga is purpose-built for you. It has first-class Tachiyomi/Mihon integration, OPDS v1.2 and v2.0, Kobo sync for EPUBs, and excellent metadata management. It's built with Kotlin/Spring Boot and runs as a single Docker container or standalone JAR.&lt;/p&gt;

&lt;p&gt;Komga is mature (v1.24+), MIT-licensed, and rock-solid. It doesn't try to do everything — it does comics extremely well and handles ebooks as a secondary feature.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Supports:&lt;/strong&gt; CBZ, CBR, PDF, EPUB&lt;br&gt;
&lt;strong&gt;Deploy:&lt;/strong&gt; Docker or standalone JAR · &lt;a href="https://komga.org/" rel="noopener noreferrer"&gt;komga.org&lt;/a&gt; · 6k stars&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Audiobookshelf — best for audiobooks (obviously)
&lt;/h2&gt;

&lt;p&gt;Audiobookshelf is in a category of its own. It's a full audiobook and podcast server with on-the-fly streaming, chapter management, and — crucially — a &lt;strong&gt;production Android app&lt;/strong&gt;. The iOS app is still TestFlight-only (beta was full as of April 2026, with spots clearing roughly 90 days after each release), but several solid third-party iOS clients exist — &lt;strong&gt;ShelfPlayer&lt;/strong&gt; and &lt;strong&gt;SoundLeaf&lt;/strong&gt; are the two most commonly recommended. No other tool on this list has this level of mobile coverage.&lt;/p&gt;

&lt;p&gt;It streams audio without transcoding, syncs playback progress across devices, scrapes metadata from Google Books and Open Library, and even generates personal RSS feeds per user. Ebook support (EPUB, PDF, comics) exists but is basic — this is first and foremost an audiobook tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Supports:&lt;/strong&gt; MP3, M4B, M4A, FLAC, OGG (audio); EPUB, PDF, CBR, CBZ (ebooks)&lt;br&gt;
&lt;strong&gt;Deploy:&lt;/strong&gt; Docker · &lt;a href="https://www.audiobookshelf.org/" rel="noopener noreferrer"&gt;audiobookshelf.org&lt;/a&gt; · 12k stars&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Stump — one to watch
&lt;/h2&gt;

&lt;p&gt;Stump is a newer, Rust-based alternative aiming to be a fast, modern comics/ebook server. It has OPDS support, user management, a clean React UI, and an alpha React Native mobile app shipped alongside v0.1.0 with offline reading, progress sync, and OIDC auth.&lt;/p&gt;

&lt;p&gt;The catch: it's still pre-v1.0. A breaking v0.1.0 on 2026-03-29 required data migration, and the maintainer — a solo developer working on it in spare time — explicitly cautions against treating the current state as stable (v0.1.1 followed on 2026-04-04 with bug fixes, but the warning stands). Not recommended for daily use yet, but worth keeping an eye on if you value performance and a modern tech stack.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Supports:&lt;/strong&gt; EPUB, PDF, CBZ, CBR&lt;br&gt;
&lt;strong&gt;Deploy:&lt;/strong&gt; Docker · &lt;a href="https://github.com/stumpapp/stump" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; · 2k stars&lt;/p&gt;

&lt;h2&gt;
  
  
  A note on BookLore
&lt;/h2&gt;

&lt;p&gt;If you arrived here looking for BookLore — a sixth option we deliberately left out — here's why. Its solo maintainer lost the community in March 2026 after a cascade of AI-generated PR dumps, an undisclosed "critical" security patch with no CVE, and hints of a retroactive license change and paid-tier split. Former contributors forked the project as &lt;strong&gt;&lt;a href="https://grimmory.org/" rel="noopener noreferrer"&gt;Grimmory&lt;/a&gt;&lt;/strong&gt; on 2026-03-12; it's AGPL-3.0, offers a one-line BookLore migration path, and is moving fast — though the project itself notes it's still stabilizing. That's where the self-hosted community went.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick comparison
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Calibre-Web&lt;/th&gt;
&lt;th&gt;Kavita&lt;/th&gt;
&lt;th&gt;Komga&lt;/th&gt;
&lt;th&gt;Audiobookshelf&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Best for&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Calibre users&lt;/td&gt;
&lt;td&gt;All-in-one&lt;/td&gt;
&lt;td&gt;Comics/manga&lt;/td&gt;
&lt;td&gt;Audiobooks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;OPDS&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Kobo sync&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Mobile app&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Send to Kindle&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Requires Calibre&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Paid tier&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;$4/mo optional&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Bottom line
&lt;/h2&gt;

&lt;p&gt;For most people starting fresh: &lt;strong&gt;Kavita&lt;/strong&gt;. It handles the widest range of formats, doesn't require Calibre, and the free tier covers everything you need.&lt;/p&gt;

&lt;p&gt;Already using Calibre? &lt;strong&gt;Calibre-Web&lt;/strong&gt; is the path of least resistance.&lt;/p&gt;

&lt;p&gt;Mostly comics/manga? &lt;strong&gt;Komga&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Audiobooks? &lt;strong&gt;Audiobookshelf&lt;/strong&gt; — nothing else comes close.&lt;/p&gt;

&lt;p&gt;All four are actively maintained, Docker-deployable, and free. You can realistically try each one in under 10 minutes.&lt;/p&gt;

</description>
      <category>selfhosted</category>
      <category>opensource</category>
      <category>docker</category>
      <category>homelab</category>
    </item>
  </channel>
</rss>
