🚨 AtomicJar is now part of Docker 🐋! Read the blog

Documentation

Java Go .NET

Description

MinIO is a high performance object storage solution. It is API compatible with the Amazon S3 cloud storage service and can handle unstructured data such as photos, videos, log files, backups, and container images with a current maximum supported object size of 5TB.

Examples

var minio = new MinIOContainer("minio/minio:RELEASE.2023-09-04T19-57-37Z");
minio.start();
minioContainer, err := minio.RunContainer(ctx, testcontainers.WithImage("minio/minio:RELEASE.2024-01-16T16-07-38Z"))
var minioContainer = new MinioBuilder()
  .WithImage("minio/minio:RELEASE.2023-01-31T02-24-19Z")
  .Build();
await minioContainer.StartAsync();