[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-505":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":15,"forks30d":15,"starsTrendScore":19,"compositeScore":20,"rankGlobal":9,"rankLanguage":9,"license":21,"archived":22,"fork":23,"defaultBranch":24,"hasWiki":23,"hasPages":22,"topics":25,"createdAt":9,"pushedAt":9,"updatedAt":38,"readmeContent":39,"aiSummary":40,"trendingCount":15,"starSnapshotCount":15,"syncStatus":41,"lastSyncTime":42,"discoverSource":43},505,"minio","minio\u002Fminio","MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license.","",null,"Go",61213,7580,646,44,0,13,135,381,63,45,"GNU Affero General Public License v3.0",true,false,"master",[26,27,28,29,30,31,32,33,34,35,36,37],"amazon-s3","cloud","cloudnative","cloudstorage","go","k8s","kubernetes","multi-cloud","multi-cloud-kubernetes","objectstorage","s3","storage","2026-06-12 02:00:14","> [!NOTE]\n> **THIS REPOSITORY IS NO LONGER MAINTAINED.**\n>\n> **Alternatives:**\n> - **[AIStor Free](https:\u002F\u002Fmin.io\u002Fdownload)** — Full-featured, standalone edition for community use (free license)\n> - **[AIStor Enterprise](https:\u002F\u002Fmin.io\u002Fpricing)** — Distributed edition with commercial support\n\n---\n\n# MinIO Quickstart Guide\n\n[![Slack](https:\u002F\u002Fslack.min.io\u002Fslack?type=svg)](https:\u002F\u002Fslack.min.io) [![Docker Pulls](https:\u002F\u002Fimg.shields.io\u002Fdocker\u002Fpulls\u002Fminio\u002Fminio.svg?maxAge=604800)](https:\u002F\u002Fhub.docker.com\u002Fr\u002Fminio\u002Fminio\u002F) [![license](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-AGPL%20V3-blue)](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Fblob\u002Fmaster\u002FLICENSE)\n\n[![MinIO](https:\u002F\u002Fraw.githubusercontent.com\u002Fminio\u002Fminio\u002Fmaster\u002F.github\u002Flogo.svg?sanitize=true)](https:\u002F\u002Fmin.io)\n\nMinIO is a high-performance, S3-compatible object storage solution released under the GNU AGPL v3.0 license.\nDesigned for speed and scalability, it powers AI\u002FML, analytics, and data-intensive workloads with industry-leading performance.\n\n- S3 API Compatible – Seamless integration with existing S3 tools\n- Built for AI & Analytics – Optimized for large-scale data pipelines\n- High Performance – Ideal for demanding storage workloads.\n\nThis README provides instructions for building MinIO from source and deploying onto baremetal hardware.\nUse the [MinIO Documentation](https:\u002F\u002Fgithub.com\u002Fminio\u002Fdocs) project to build and host a local copy of the documentation.\n\n## MinIO is Open Source Software\n\nWe designed MinIO as Open Source software for the Open Source software community. We encourage the community to remix, redesign, and reshare MinIO under the terms of the AGPLv3 license.\n\nAll usage of MinIO in your application stack requires validation against AGPLv3 obligations, which include but are not limited to the release of modified code to the community from which you have benefited. Any commercial\u002Fproprietary usage of the AGPLv3 software, including repackaging or reselling services\u002Ffeatures, is done at your own risk.\n\nThe AGPLv3 provides no obligation by any party to support, maintain, or warranty the original or any modified work.\nAll support is provided on a best-effort basis through Github and our [Slack](https:\u002F\u002Fslack.min.io) channel, and any member of the community is welcome to contribute and assist others in their usage of the software.\n\nMinIO [AIStor](https:\u002F\u002Fwww.min.io\u002Fproduct\u002Faistor) includes enterprise-grade support and licensing for workloads which require commercial or proprietary usage and production-level SLA\u002FSLO-backed support. For more information, [reach out for a quote](https:\u002F\u002Fmin.io\u002Fpricing).\n\n## Source-Only Distribution\n\n**Important:** The MinIO community edition is now distributed as source code only. We will no longer provide pre-compiled binary releases for the community version.\n\n### Installing Latest MinIO Community Edition\n\nTo use MinIO community edition, you have two options:\n\n1. **Install from source** using `go install github.com\u002Fminio\u002Fminio@latest` (recommended)\n2. **Build a Docker image** from the provided Dockerfile\n\nSee the sections below for detailed instructions on each method.\n\n### Legacy Binary Releases\n\nHistorical pre-compiled binary releases remain available for reference but are no longer maintained:\n\n- GitHub Releases: https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Freleases\n- Direct downloads: https:\u002F\u002Fdl.min.io\u002Fserver\u002Fminio\u002Frelease\u002F\n\n**These legacy binaries will not receive updates.** We strongly recommend using source builds for access to the latest features, bug fixes, and security updates.\n\n## Install from Source\n\nUse the following commands to compile and run a standalone MinIO server from source.\nIf you do not have a working Golang environment, please follow [How to install Golang](https:\u002F\u002Fgolang.org\u002Fdoc\u002Finstall). Minimum version required is [go1.24](https:\u002F\u002Fgolang.org\u002Fdl\u002F#stable)\n\n```sh\ngo install github.com\u002Fminio\u002Fminio@latest\n```\n\nYou can alternatively run `go build` and use the `GOOS` and `GOARCH` environment variables to control the OS and architecture target.\nFor example:\n\n```\nenv GOOS=linux GOARCH=arm64 go build\n```\n\nStart MinIO by running `minio server PATH` where `PATH` is any empty folder on your local filesystem.\n\nThe MinIO deployment starts using default root credentials `minioadmin:minioadmin`.\nYou can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server.\nPoint a web browser running on the host machine to \u003Chttp:\u002F\u002F127.0.0.1:9000> and log in with the root credentials.\nYou can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.\n\nYou can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool:\n\n```sh\nmc alias set local http:\u002F\u002Flocalhost:9000 minioadmin minioadmin\nmc admin info local\n```\n\nSee [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool.\nFor application developers, see \u003Chttps:\u002F\u002Fdocs.min.io\u002Fenterprise\u002Faistor-object-store\u002Fdevelopers\u002Fsdk\u002F> to view MinIO SDKs for supported languages.\n\n> [!NOTE]\n> Production environments using compiled-from-source MinIO binaries do so at their own risk.\n> The AGPLv3 license provides no warranties nor liabilities for any such usage.\n\n## Build Docker Image\n\nYou can use the `docker build .` command to build a Docker image on your local host machine.\nYou must first [build MinIO](#install-from-source) and ensure the `minio` binary exists in the project root.\n\nThe following command builds the Docker image using the default `Dockerfile` in the root project directory with the repository and image tag `myminio:minio`\n\n```sh\ndocker build -t myminio:minio .\n```\n\nUse `docker image ls` to confirm the image exists in your local repository.\nYou can run the server using standard Docker invocation:\n\n```sh\ndocker run -p 9000:9000 -p 9001:9001 myminio:minio server \u002Ftmp\u002Fminio --console-address :9001\n```\n\nComplete documentation for building Docker containers, managing custom images, or loading images into orchestration platforms is out of scope for this documentation.\nYou can modify the `Dockerfile` and `dockerscripts\u002Fdocker-entrypoint.sh` as-needed to reflect your specific image requirements.\n\nSee the [MinIO Container](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Foperations\u002Fdeployments\u002Fbaremetal-deploy-minio-as-a-container.html#deploy-minio-container) documentation for more guidance on running MinIO within a Container image.\n\n## Install using Helm Charts\n\nThere are two paths for installing MinIO onto Kubernetes infrastructure:\n\n- Use the [MinIO Operator](https:\u002F\u002Fgithub.com\u002Fminio\u002Foperator)\n- Use the community-maintained [Helm charts](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Ftree\u002Fmaster\u002Fhelm\u002Fminio)\n\nSee the [MinIO Documentation](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Foperations\u002Fdeployments\u002Fkubernetes.html) for guidance on deploying using the Operator.\nThe Community Helm chart has instructions in the folder-level README.\n\n## Test MinIO Connectivity\n\n### Test using MinIO Console\n\nMinIO Server comes with an embedded web based object browser.\nPoint your web browser to \u003Chttp:\u002F\u002F127.0.0.1:9000> to ensure your server has started successfully.\n\n> [!NOTE]\n> MinIO runs console on random port by default, if you wish to choose a specific port use `--console-address` to pick a specific interface and port.\n\n### Test using MinIO Client `mc`\n\n`mc` provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services.\n\nThe following commands set a local alias, validate the server information, create a bucket, copy data to that bucket, and list the contents of the bucket.\n\n```sh\nmc alias set local http:\u002F\u002Flocalhost:9000 minioadmin minioadmin\nmc admin info\nmc mb data\nmc cp ~\u002FDownloads\u002Fmydata data\u002F\nmc ls data\u002F\n```\n\nFollow the MinIO Client [Quickstart Guide](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Freference\u002Fminio-mc.html#quickstart) for further instructions.\n\n## Explore Further\n\n- [The MinIO documentation website](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Findex.html)\n- [MinIO Erasure Code Overview](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Foperations\u002Fconcepts\u002Ferasure-coding.html)\n- [Use `mc` with MinIO Server](https:\u002F\u002Fdocs.min.io\u002Fcommunity\u002Fminio-object-store\u002Freference\u002Fminio-mc.html)\n- [Use `minio-go` SDK with MinIO Server](https:\u002F\u002Fdocs.min.io\u002Fenterprise\u002Faistor-object-store\u002Fdevelopers\u002Fsdk\u002Fgo\u002F)\n\n## Contribute to MinIO Project\n\nPlease follow MinIO [Contributor's Guide](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Fblob\u002Fmaster\u002FCONTRIBUTING.md) for guidance on making new contributions to the repository.\n\n## License\n\n- MinIO source is licensed under the [GNU AGPLv3](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Fblob\u002Fmaster\u002FLICENSE).\n- MinIO [documentation](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Ftree\u002Fmaster\u002Fdocs) is licensed under [CC BY 4.0](https:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F4.0\u002F).\n- [License Compliance](https:\u002F\u002Fgithub.com\u002Fminio\u002Fminio\u002Fblob\u002Fmaster\u002FCOMPLIANCE.md)\n","MinIO 是一个高性能、兼容S3的对象存储解决方案，采用Go语言编写，并遵循GNU AGPLv3许可协议。它支持S3 API，能够无缝集成现有的S3工具，特别优化了对AI\u002F机器学习和大数据分析等大规模数据处理场景的支持。MinIO具备高吞吐量和低延迟特性，适用于需要高性能存储的工作负载。尽管官方不再维护此开源版本，但用户仍可以通过从源代码安装或构建Docker镜像的方式使用社区版MinIO，适用于希望利用开源技术搭建私有云存储服务的企业和个人开发者。对于需要商业支持的场景，MinIO提供了AIStor企业版作为替代方案。",2,"2026-06-11 02:36:55","top_all"]