37 comments

  • tombert2 minutes ago
    I ended up just getting Claude to hack together a compatible-enough S3 thing for my self-hosted Sourcehut releases. It took like 45 minutes and it seems to work well enough (though I haven&#x27;t done exhaustive tests because &quot;good enough is good enough&quot; for this).<p>The S3 API is pretty well-documented so getting something compatible with it is trivial for modern AI tools.
  • cadamsdotcom5 hours ago
    &gt; 2026-03-02: Ruohang Feng has forked MinIO to pgsty&#x2F;minio and is promising to maintain a stable, CVE-patched, distribution.<p>This is what I went with.<p>I use it in end to end tests as an S3 simulator that starts and stops instantly and reads &amp; writes to a local directory, - as you&#x27;d expect it&#x27;s great in that role. No complaints. Given the fork&#x27;s maintainer puts their real name on it &amp; stakes their reputation, you&#x27;d assume it can be trusted - but my use case is simpler than most.
    • nacnud4 hours ago
      According to <a href="https:&#x2F;&#x2F;github.com&#x2F;pgsty&#x2F;silo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pgsty&#x2F;silo</a> it&#x27;s pgsty&#x2F;silo now:<p>&gt; Renamed from pgsty&#x2F;minio to pgsty&#x2F;silo, default branch master → main, on 2026-08-06
      • rietta2 hours ago
        Neat!<p>I had switched some projects to SeaweedFS&#x27;s Docker image. It worked well. This is good to know there is a successor open source project that would require no code changes to use. Will evaluate.
      • spapas823 hours ago
        This is what I use. I had a minio instance that was replaced flawlessly with silo. This is an excellent project and needs more traction. All existing minio users must switch to Silo ASAP.
    • imglorp2 hours ago
      Right.<p>It&#x27;s nice to hear about other products, but OP made it sound like Minio disappeared and was not an option. Neither are true. Yes the company moved on but the old source is sitting there and that version is pretty good as-is. We&#x27;re still using it in prod, no issues for us. The old container images are floating around and you&#x27;re free to copy them to wherever.<p>If you need support or newer features, fork it or use ^ this fork.
    • samgranieri5 hours ago
      I might have to try this. I’m currently pinned on the last non-crippled version of minio
  • pveierland7 hours ago
    Garage added an automatic configuration feature in v2.3.0 that makes it easier to set up single nodes:<p><pre><code> garage server --single-node --default-bucket </code></pre> <a href="https:&#x2F;&#x2F;garagehq.deuxfleurs.fr&#x2F;documentation&#x2F;quick-start&#x2F;" rel="nofollow">https:&#x2F;&#x2F;garagehq.deuxfleurs.fr&#x2F;documentation&#x2F;quick-start&#x2F;</a>
  • c0balt6 hours ago
    A notable mention should also be Versity GW, <a href="https:&#x2F;&#x2F;github.com&#x2F;versity&#x2F;versitygw&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;versity&#x2F;versitygw&#x2F;</a>
    • merb2 minutes ago
      I use that aswell since it can be used and expose a posix filesystem. This is helpful when we want to add s3 to existing storage like a nas. (Well we had some problems with it in the past tough)<p>Sadly most new projects do not offer posix anymore.
    • catdog7 minutes ago
      I&#x27;m quite pleased with it. It&#x27;s also nice that it translates directly to the file system .
    • nodoodles5 hours ago
      +1 switched to versity for homelab, been simple and stable as a rock. Point at a directory per bucket and done.<p>Also discussions few months ago here when healthcheks.io switched to it: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47806348">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47806348</a>
    • pstadler2 hours ago
      I&#x27;ve been using it for local development for a while now. My goal was to replace MinIO, which I could run and configure with a single Docker command. VersityGW works just as well for that.
    • erebe__2 hours ago
      Use it for my homelab too, super nice and stable. Support also delivering static website&#x2F;asset.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;versity&#x2F;versitygw&#x2F;#static-website-hosting" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;versity&#x2F;versitygw&#x2F;#static-website-hosting</a>
    • markusw6 hours ago
      This is what I switched to as well, works nicely. Can have just a folder as a backend as well, which makes things pretty simple.
    • swills5 hours ago
      I&#x27;ve had good experiences with Versity GW too and it&#x27;s a shame it&#x27;s not more well known.
  • KronisLV5 hours ago
    Running Sentry on prem, I had to swap out their default SeaweedFS setup for Garage because the former kept failing under concurrent writes. I tried digging around for a bit, but found that the swap was easier and faster, Garage has also worked great for single node use cases (e.g. tested up to around 10 TB of data). I still think that SeaweedFS is a cool project, might have been a config issue or something, wasn’t worth tweaking.<p>The setup for Garage sucks, especially cause their Docker image doesn’t automatically create keys or buckets and permissions for you like for example various RDBMS images do. Doing that the first time manually was annoying, but their docs are pretty nice and an AI agent can build you your own Docker image with custom init in about 15 minutes.<p>Worst with it I’ve had were issues with hooking up WinSCP to it directly to browse saved satellite data, initial connections would hang for some reason, not sure what the problem was either.<p>Also used Zenko but kinda got the feeling that the project wasn’t as healthy and straight up felt abandoned (e.g. the outdated container images and such), though there is some activity.
  • hedgehog38 minutes ago
    Does anyone here have experience using some of the newer S3 family API features like locking with any of the self-hostable options? After reading about celld&#x27;s Litestream + locking on S3 approach (<a href="https:&#x2F;&#x2F;github.com&#x2F;denoland&#x2F;celld" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;denoland&#x2F;celld</a>) I got curious about that style of deployment as a way to consolidate small tools so their state is just centralize S3 buckets, but from a bit of reading support for the features like locking is uneven.
    • justincormack21 minutes ago
      Its not locking, it needs consistent conditional PUT. Minio did have that, Rustfs does, Garage is eventually consistent so explicitly does not support it correctly.
  • uroni4 hours ago
    My <a href="https:&#x2F;&#x2F;github.com&#x2F;uroni&#x2F;hs5" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;uroni&#x2F;hs5</a> is designed for this use case.<p>One notable thing is that compared to MinIO (and others) it does not store the objects as individual files. I also have DuckDB directly integrated.<p>The readme has a comparison to Garage, seaweedfs, RustFS and Ceph.
    • cuu5084 hours ago
      Very cool, I like the conceptual simplicity of it. Even I can understand it, at least at a surface level :-)<p>Is there a safe way to make backups of the index.lmdb and data0 files without stopping the server?
      • uroni4 hours ago
        Not without snapshot currently. I guess I could collect all writes in the (optional) WAL file while a backup is running, then the files would be consistent.
  • Jedd6 hours ago
    A weird target, the author has.<p>The title is &#x27;for single node local S3&#x27; but what they actually mean is <i>&#x27;for minio-compatibility&#x27;</i>, which is an entirely different question.<p>When I abandoned minio a year or so ago, I also surveyed the options, and settled on Garage. It lacked the GUI, but felt about the same complexity as minio. Perhaps a smidge more complexity, as I moved to 3-node and 5-node separate instances of garage, running as containers under Nomad.<p>I don&#x27;t recall it being <i>onerous</i>, but I was looking for some basic S3-alike capabilities, not just minio-alike.<p>(How many people set out to build an object storage system with some number of AWS S3 primitives, but primarily try to match a third-party proprietary system&#x27;s foibles?)<p>&gt; So, Garage does work, but gosh…it is not just a drop-in replacement in terms of code changes.<p>I think in terms of actual code that <i>uses</i> local S3, it pretty much was a drop-in replacement. (I have multiple distribution&#x2F;registry, Grafana Loki &#x2F; Mimir, influx3 - all backing onto my object storage system, and the config changes there were modest - key+secret, and url - just as you&#x27;d expect.)
  • apexalpha4 hours ago
    I had previously used seaweedfs, which has more moving parts but seems more feature-rich. It was overkill for a homelab, so I went to garage.<p>Garage is very stable, but the metadata engine &#x2F; file MUST live on NVMe. Otherwise it gets slow on small files. It also lacks features like per bucket retention settings and stuff. It really is &quot;just&quot; a S3 bucket.
    • nijave3 hours ago
      For testing&#x2F;dev setups you can turn sync off and get some performance back but that&#x27;s only useful for cases where losing data is okay.
    • jszymborski3 hours ago
      The trouble I had with SeaweedFS was that the docs I found were rather sparse. Garage, on the other hand seemed pretty well documented.
    • otabdeveloper43 hours ago
      The very first thing Garage did after I installed it on a test three-node cluster is get corrupted and lose files.<p>No thanks.
  • mickael-kerjean6 hours ago
    Filestash (<a href="https:&#x2F;&#x2F;github.com&#x2F;mickael-kerjean&#x2F;filestash" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mickael-kerjean&#x2F;filestash</a>) has a s3 gateway plugin that I made. It proxy the S3 traffic to any downstream storage: SFTP, FTP, another S3, SMB, NFS, IPFS, ...
    • CodesInChaos2 hours ago
      How does that handle concurrency (e.g. updates being atomic, conditional PUT) and data consistency after a crash? Getting that right over generic backends sounds challenging, to say the least.
    • lathiat3 hours ago
      Almost went past looking at this option, it has a far bigger ecosystem of both storage and auth plugins and otherwise looks to be more mature than I might have guessed from the passing comment.
  • alexpotato4 hours ago
    We ran RustFS in production at a past job.<p>Was the backend for an archiving service and we found it to work well on baremetal machines and seamlessly integrated with existing services that used the S3 api.<p>This was on an internal network so YMMV when it comes to running on the open internet especially with the CVE mentioned in the post.
  • cannonpalms4 hours ago
    Is there any &quot;local&quot;&#x2F;minio-esque object store properly implements the full conditional GET&#x2F;PUT&#x2F;DELETE spec, ETag, etc.? I have struggled to find this in the past.
  • justincormack4 hours ago
    I wouldnt use Garage for Iceberg, Iceberg relies on conditional PUT working correctly, while Garage is eventually consistent, so they don&#x27;t provide the correct guarantee.
  • sscarduzio2 hours ago
    Really happy with my own <a href="https:&#x2F;&#x2F;deltaglider.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;deltaglider.com&#x2F;</a><p>- Filesystem backend - Encrypted S3 backend - Compressed S3 backend (Saving a ton of money here) - Cross backend replication - Full IAM - Full GUI with OIDC auth
  • cgeier1 hour ago
    I&#x27;m still disappointed, that there is no S3 CNCF sponsored process. It seems to be such an important part of the cloud native ecosystem, every big use case needs some way to store blobs of data.<p>But no, I&#x27;m also not about to start one or try to make something like SeaweedFS a community supported project that has a chance to be picked up by the CNCF, so I&#x27;m part of the problem.
  • Helmut100014 hours ago
    I run Scality S3 (Zenko Cloudserver in the blig) since about 2 years and it is quite capable and frequently updated. Just make sure to point it to the latest Github Registry, not the outdated Docker.com one.
  • dalton746 hours ago
    For single-node local S3, I often just use `s3fs` mounting a local directory. MinIO always felt like overkill for simple dev.
  • beastman8240 minutes ago
    Til there are like 50 s3 clones
  • aljarry6 hours ago
    I did try seaweedfs ~half a year ago and I had issues with setting up users through terraform module (if I recall correctly, users endpoint were not correctly responding on delete), and lack of S3 expiry rules (you needed to use seaweedfs configuration or API for that). Other than that, I was pretty happy with it.
  • hn9zmdcaou5 hours ago
    Versity&#x27;s posix backend was the one that stuck for us, multipart uploads land as real files on disk so you can inspect them with ls when a test fails.
  • prologic7 hours ago
    One alternative worth looking at is S2: <a href="https:&#x2F;&#x2F;github.com&#x2F;mojatter&#x2F;s2" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mojatter&#x2F;s2</a>
  • rugma7 hours ago
    Rustfs, works pretty well for me
    • markab214 hours ago
      Yup, same. We use RustFS in a production system with no issues. We switched over after MinIO license changes and after evaluating a few different stacks.<p>We have heavy concurrent usage, and we haven&#x27;t had a single issue yet.
  • pritambaral6 hours ago
    Incus (spiritual successor to LXD, after the fork-off by Canonical) has a simple S3 server built-in.
    • weikju5 hours ago
      Isn’t that just minio? At least in LXD it’s minio.
      • pritambaral4 hours ago
        Replaced because minio is dead: <a href="https:&#x2F;&#x2F;github.com&#x2F;lxc&#x2F;incus&#x2F;pull&#x2F;3258" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;lxc&#x2F;incus&#x2F;pull&#x2F;3258</a>
  • firesteelrain3 hours ago
    Are any of these truly alternatives? MinIO is built for scale and not small projects. Ceph is maybe closest.
    • tempest_2 hours ago
      Define scale.<p>When I tried minio 5 years ago it choked pretty quick on storing billions of objects
    • crtasm3 hours ago
      as per the title the scope here is single-node local S3
  • stevefan19995 hours ago
    I use JuiceFS <a href="https:&#x2F;&#x2F;github.com&#x2F;juicedata&#x2F;juicefs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;juicedata&#x2F;juicefs</a> if you think the Chinese are worth the trust
    • almaight3 hours ago
      In the decades that open-source projects have existed on GitHub—even those backed by the Chinese government—there has never been an instance of them containing spyware; conversely, we frequently see NSA hacking tools exploiting open-source projects to launch massive cyberattacks and cause data breaches. Reality isn&#x27;t like American movies where Americans are always the heroes; in fact, those GIs are usually the ones doing the invading. To me, your statement sounds like a resident living under Nazi rule telling everyone, &quot;There&#x27;s actually a pretty good project over on the Allied side—if you choose to believe it.&quot;
      • paulryanrogers3 hours ago
        <a href="https:&#x2F;&#x2F;www.npr.org&#x2F;2024&#x2F;02&#x2F;22&#x2F;1233178131&#x2F;leaked-document-trove-shows-a-chinese-hacking-scheme-focused-on-harassing-dissid" rel="nofollow">https:&#x2F;&#x2F;www.npr.org&#x2F;2024&#x2F;02&#x2F;22&#x2F;1233178131&#x2F;leaked-document-tr...</a>
    • cyanydeez5 hours ago
      If it&#x27;s open source, you don&#x27;t do daily pulls and you have a competent AI to crawl the codebase; why does it matter the ethnicity at this point?
      • philipallstar5 hours ago
        Ethnicity never mattered (other than for the people that think too many white people are doing something). It&#x27;s culture, in particular government ties, that are the worry with China.
  • brinepot5 hours ago
    Often just spinning up `localstack` works well, even if only for S3. Gives you other AWS services if you ever need them.
    • paulryanrogers3 hours ago
      Commercial use requires a paid subscription. Probably not an issue for a home lab, unless you run a small business on it.
  • rrhjm532706 hours ago
    I enjoyed the smooth transition from minio to RustFS quite a lot.
    • PunchyHamster6 hours ago
      I didn&#x27;t. Hit bug after bug after bug in RustFS. Current version seems to work fine for now but it&#x27;s definitely &quot;new project&quot;<p>On flipside the project maintainers react very fast on any bug I submitted and it&#x27;s fixed pretty quickly, so not really complaint, just warning
  • vanillax1 hour ago
    RustFS is great. Just works.
  • de6u99er6 hours ago
    I am using Garage for my local DEV environment.<p><a href="https:&#x2F;&#x2F;garagehq.deuxfleurs.fr&#x2F;" rel="nofollow">https:&#x2F;&#x2F;garagehq.deuxfleurs.fr&#x2F;</a>
  • gclawes3 hours ago
    SeaweedFS has a great IAM&#x2F;STS&#x2F;policy layer as well. It can support a secretless auth flow similar enough to AWS IRSA with it&#x27;s OIDC integration
  • v3ss0n5 hours ago
    I heard good news about SeaweedFS
    • orthoxerox3 hours ago
      It&#x27;s nice, I am just afraid of the pace Chris Lu can maintain with LLM assistance. Too many features are added in each new release, no stabilization time at all.
  • SSLy7 hours ago
    or rclone serve
    • 8fingerlouie6 hours ago
      Came to say this.<p>If we&#x27;re just talking verifying S3 connectivity, simply spinning up &quot;rclone serve s3&quot; appears to be the simplest solution.
  • nater50003 hours ago
    Crazy how large of a vacuum MinIO left lol
  • undergroundengi1 hour ago
    [flagged]
  • earth-tattoo6 hours ago
    Shout-out to rustfs.
  • sdcfgy7 hours ago
    Just use the damn file system. Why does everyone have to put HTTP between everything?
    • wink7 hours ago
      Because this is about having a local standin for S3, which (in a production deploy) often solves a different problem than a (local) filesystem.<p>This post does not even mention the S3 API as a replacement for a filesystem.
    • nijave3 hours ago
      I can pay Amazon pennies on the dollar to saturate 100Gbps with arbitrarily high concurrency<p>Sometimes I also want a smaller version for when I don&#x27;t need that performance but don&#x27;t want multiple implementations of storage backends<p>Edit: before someone says NVMe, highly available across 3 fault domains
    • bartekpacia5 hours ago
      I like how you got 4 different comments all starting with &quot;Because...&quot; hah!
    • jonenst4 hours ago
      Because AFAIK the filesystem is at the same time a huge API and designed for a different use case. I can think of the following examples:<p>- very flat structures: storing hundred of thousands of files in a single directory will fail<p>- designed for local disks and NFS is a leaky abstraction:<p><pre><code> - running a system using on locks will fail - cache behaviors work fine for the &quot;humans browsing files&quot; usecase but not so much for other cases</code></pre> probably many more reasons
      • sdcfgy4 hours ago
        My point is to push the storage abstraction up a level. Then plug S3 or file system into it.<p>I wouldn’t say this if I hadn’t done this on the PB scale. On a file system! With billions of files!<p>People are blind to anything other than shitty cloud APIs now. It’s depressing.
    • Mashimo5 hours ago
      Because if you ship a tool with s3 support, the customer can decide if he wants to store in the cloud, or spin up a docker container locally.
      • drdexebtjl51 minutes ago
        The same argument can be made for the other side: the customer can also trivially mount the S3 bucket as a filesystem, if you decide to ship the tool with filesystem support instead.
    • Tostino7 hours ago
      Because you want to mock the tools you are going to use in production locally or in CI. Really good reasons to not totally change what you are doing in your app between environments.
      • drdexebtjl49 minutes ago
        &gt; Really good reasons to not totally change what you are doing in your app between environments.<p>Mocks do that.<p>If you want to not totally change what you are doing in your app between environments, point it at an actual S3 bucket in all environments.
    • xienze7 hours ago
      Because you might be running something that only talks S3 and want to point it at something local.