
MinIO Has a Free S3-Compatible Object Storage
MinIO is a free, open-source object storage system that is API-compatible with Amazon S3. Run your own S3 — on your hardware, at your scale. What Is MinIO? MinIO is a high-performance object storage system built for cloud-native workloads. It implements the S3 API, so any tool that works with AWS S3 works with MinIO. Key features: 100% S3 API compatible High performance (325 GiB/s read, 165 GiB/s write) Erasure coding for data protection Encryption at rest and in transit Versioning and immutable objects Bucket replication Identity management (LDAP, OIDC) Kubernetes native Single binary deployment Quick Start Docker docker run -p 9000:9000 -p 9001:9001 \ -e MINIO_ROOT_USER = minioadmin \ -e MINIO_ROOT_PASSWORD = minioadmin \ -v minio-data:/data \ minio/minio server /data --console-address ":9001" API: http://localhost:9000 Console: http://localhost:9001 Binary wget https://dl.min.io/server/minio/release/linux-amd64/minio chmod +x minio ./minio server /data Use With AWS SDK Since MinIO i
Continue reading on Dev.to DevOps
Opens in a new tab


