Automated nightly builds of MinIO Community Edition binaries and Docker images
Provided as a public service by Lithus
MinIO no longer provides pre-compiled binaries for the Community Edition as of early October 2025. The official distribution model now requires users to build from source or use commercial releases.
This repository automatically builds the latest MinIO Community Edition releases nightly, providing:
- Docker images (multi-architecture: amd64/arm64)
- Standalone binaries (Linux amd64/arm64)
- Automated builds from official MinIO source code
- Transparent build process using GitHub Actions
Pull and run the latest MinIO build:
# Pull the image (works on both amd64 and arm64)
docker pull ghcr.io/golithus/minio:latest
# Run MinIO server
docker run -p 9000:9000 -p 9001:9001 \
-v /path/to/data:/data \
--name minio \
ghcr.io/golithus/minio:latest
# Access the console at http://localhost:9001
# Default credentials: minioadmin / minioadminDownload the binary for your platform from the latest release:
# Linux AMD64
wget https://github.com/golithus/minio-builds/releases/latest/download/minio-linux-amd64
chmod +x minio-linux-amd64
sudo mv minio-linux-amd64 /usr/local/bin/minio
# Linux ARM64
wget https://github.com/golithus/minio-builds/releases/latest/download/minio-linux-arm64
chmod +x minio-linux-arm64
sudo mv minio-linux-arm64 /usr/local/bin/minio
# Verify the installation
minio --version# Download checksum file
wget https://github.com/golithus/minio-builds/releases/latest/download/minio-linux-amd64.sha256sum
# Verify
sha256sum -c minio-linux-amd64.sha256sumMulti-architecture Docker images are published to GitHub Container Registry:
# Latest release
ghcr.io/golithus/minio:latest
# Specific version
ghcr.io/golithus/minio:RELEASE.2025-01-15T12-00-00ZSupported Architectures:
linux/amd64(x86_64)linux/arm64(aarch64)
Docker automatically selects the correct architecture for your system.
Each release includes:
minio-linux-amd64- Linux x86_64 binaryminio-linux-arm64- Linux ARM64 binary*.sha256sum- SHA256 checksums for verification
Need help deploying MinIO at scale or optimizing your object storage infrastructure?
Our DevOps and SRE teams specialize in high-performance storage systems, Kubernetes deployments, and infrastructure automation.
These builds are provided as-is, without warranty. While we strive for reliability and accuracy, this is a community service project. For production workloads requiring SLA-backed support, consider:
- Building from source yourself
- MinIO AIStor (official enterprise edition)
- Lithus managed infrastructure services
Suggestions and improvements welcome! Please open an issue or pull request.
Want to run these builds yourself? Fork this repository and:
- Enable GitHub Actions
- Ensure you have access to ARM64 runners (or modify the workflow)
- Update repository owner references in the workflow
- Trigger the workflow manually or wait for the schedule
Maintained with ❤️ by the Lithus team