A conservatively maintained MinIO fork
Security maintenance, versioned release artifacts, and operational continuity for existing deployments.
Website · Documentation · Download · Blog · Releases · Security · 中文
> [!IMPORTANT] > Silo is an independent, community-maintained fork of the open-source MinIO server, published by [Pigsty](https://pigsty.io) from [`pgsty/minio`](https://github.com/pgsty/minio). It is not affiliated with, endorsed by, or sponsored by MinIO, Inc. “MinIO” is used only to identify the upstream project and compatibility lineage. ## Overview Silo maintains one downstream release line based on MinIO [`RELEASE.2025-12-03T12-00-00Z`](https://github.com/minio/minio/releases/tag/RELEASE.2025-12-03T12-00-00Z). It provides maintained builds and release artifacts for existing MinIO-compatible deployments after upstream community distribution ended. Pigsty uses this fork for object storage as an optional PG backup repo. The official project portal is [silo.pgsty.com](https://silo.pgsty.com/). It brings documentation, downloads, release and security notes, and project background together. English is served at the site root; Chinese is available under [/zh/](https://silo.pgsty.com/zh/). ## Find the Right Resource | Looking for | Canonical location | | :-- | :-- | | Project overview and navigation | [Silo Website](https://silo.pgsty.com/) ([中文](https://silo.pgsty.com/zh/)) | | Installation methods and downloads | [Download & Install](https://silo.pgsty.com/download/) ([中文](https://silo.pgsty.com/zh/download/)) | | Operations, administration, development, and reference | [Documentation](https://silo.pgsty.com/docs/) ([中文](https://silo.pgsty.com/zh/docs/)) | | Project news, release notes, and security notes | [Blog](https://silo.pgsty.com/blog/), including [releases](https://silo.pgsty.com/blog/release/) and [security](https://silo.pgsty.com/blog/security/) | | Versioned binaries, checksums, and source archives | [GitHub Releases](https://github.com/pgsty/minio/releases) | | Bug reports and feature discussions | [GitHub Issues](https://github.com/pgsty/minio/issues) | | License, attribution, and trademark information | [License](https://silo.pgsty.com/about/license/), [Attribution](https://silo.pgsty.com/about/attribution/), and [Trademark](https://silo.pgsty.com/about/trademark/) | ## Maintenance Policy The active release line covers: - build and dependency maintenance; - applicable security fixes and advisories; - focused fixes for reproducible defects; - versioned binaries, packages, checksums, and multi-architecture images; - the web console, client, documentation, and Pigsty integration. Changes are kept narrow and tested where practical. Maintenance is best effort; no response, remediation, or release schedule is guaranteed. ### Out of scope - a separate product roadmap, new storage engine, or speculative S3 features; - broad rewrites or changes that materially expand the downstream delta; - historical releases or multiple support branches; - commercial support, SLAs, 24×7 coverage, or SUBNET access; - deployment design, access control, monitoring, backup, or recovery. ## Compatibility Silo aims to preserve: - MinIO-compatible S3 APIs, configuration, environment variables, and CLI conventions; - `RELEASE.YYYY-MM-DDTHH-MM-SSZ` tags, container entrypoints, and common deployment workflows. Compatibility is the default constraint. Silo preserves existing wire, client, configuration, and operational behavior whenever doing so remains safe. Compatibility is broken only when necessary to close a major security issue, and the release notes must identify the affected behavior and migration path. Treat each release as a downstream upgrade: pin versions, review [release notes](https://silo.pgsty.com/blog/release/) and [security advisories](docs/security/advisories.md), keep a rollback path, and test before production use. ## Downloads and Release Artifacts Use [Download & Install](https://silo.pgsty.com/download/) to choose an installation method. GitHub Releases remains the source for versioned server binaries, checksums, and source archives. | Artifact | Location | | :-- | :-- | | Source | [`github.com/pgsty/minio`](https://github.com/pgsty/minio) | | Container image | [`pgsty/minio`](https://hub.docker.com/r/pgsty/minio), multi-arch for `linux/amd64` and `linux/arm64` | | Server binaries and checksums | [GitHub Releases](https://github.com/pgsty/minio/releases) for Linux, macOS, and Windows on `amd64` and `arm64` | | Linux packages | RPM, DEB, and APK artifacts, also distributed through the [Pigsty repository](https://pigsty.io/docs/repo/) | | Client | [`pgsty/mc`](https://github.com/pgsty/mc), bundled in the container as `mcli` with an `mc` compatibility alias | | Console | Maintained [`georgmangold/console`](https://github.com/georgmangold/console) fork, embedded in the server build | | Shared library | [`pgsty/silo-pkg`](https://github.com/pgsty/silo-pkg) v3.7.0, consumed through a `replace` directive while preserving `github.com/minio/pkg/v3` import paths ([release notes](https://silo.pgsty.com/blog/release/pkg-3.7.0/)) | ## Quick Start For local evaluation: ```bash mkdir -p data export MINIO_ROOT_USER=minioadmin export MINIO_ROOT_PASSWORD=change-me-long-password docker run -d --name silo \ -p 9000:9000 \ -p 9001:9001 \ -e MINIO_ROOT_USER \ -e MINIO_ROOT_PASSWORD \ -v "$PWD/data:/data" \ pgsty/minio:latest server /data --console-address ":9001" ``` Open the console at