MinIO is a High Performance Object Storage released under Apache License v2.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
- MinIO – Quickstart Guide
https://github.com/minio/minio
- MinIO – Docs
https://github.com/minio/minio/tree/master/docs
- MinIO – docker-compose.yml
version: '3.2'
services:
minio:
image: minio/minio
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: Z2FpWWlQYUNoYXIwb2F5
MINIO_SECRET_KEY: RXNhZURldThhaXNlcGhpYm9vMGFoZ2g5QWVzNWFj
volumes:
- files:/data
command: server /data
volumes:
files: