Alternatives to MinIO for single-node local S3
31–40 of 112 posts
Re: Alternatives to MinIO for single-node local S3
#32The 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.
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.
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.
Re: Alternatives to MinIO for single-node local S3
#33Re: Alternatives to MinIO for single-node local S3
#34> 2026-03-02: Ruohang Feng has forked MinIO to pgsty/minio and is promising to maintain a stable, CVE-patched, distribution. This is what I went with. I use it in end to end tests as an S3 simulator that starts and stops instantly and reads & writes to a local directory, - as you'd expect it's great in that role. No complaints. Given the fork's maintainer puts their real name on it & stakes their reputation, you'd as…
Re: Alternatives to MinIO for single-node local S3
#35Just use the damn file system. Why does everyone have to put HTTP between everything?
Re: Alternatives to MinIO for single-node local S3
#36One notable thing is that compared to MinIO (and others) it does not store the objects as individual files. I also have DuckDB directly integrated.
The readme has a comparison to Garage, seaweedfs, RustFS and Ceph.
Re: Alternatives to MinIO for single-node local S3
#37Rustfs, works pretty well for me
We have heavy concurrent usage, and we haven't had a single issue yet.
Re: Alternatives to MinIO for single-node local S3
#38> 2026-03-02: Ruohang Feng has forked MinIO to pgsty/minio and is promising to maintain a stable, CVE-patched, distribution. This is what I went with. I use it in end to end tests as an S3 simulator that starts and stops instantly and reads & writes to a local directory, - as you'd expect it's great in that role. No complaints. Given the fork's maintainer puts their real name on it & stakes their reputation, you'd as…
> Renamed from pgsty/minio to pgsty/silo, default branch master → main, on 2026-08-06
Re: Alternatives to MinIO for single-node local S3
#39Just use the damn file system. Why does everyone have to put HTTP between everything?
- very flat structures: storing hundred of thousands of files in a single directory will fail
- designed for local disks and NFS is a leaky abstraction:
- running a system using on locks will fail
- cache behaviors work fine for the "humans browsing files" usecase but not so much for other cases
probably many more reasons