🚨 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

Dependency:
<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>minio</artifactId>
    <version>1.20.0</version>
    <scope>test</scope>
</dependency>
Usage:
var minio = new MinIOContainer("minio/minio:RELEASE.2023-09-04T19-57-37Z");
minio.start();
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/minio
Usage:
minioContainer, err := minio.Run(ctx, "minio/minio:RELEASE.2024-01-16T16-07-38Z")
Dependency:
dotnet add package Testcontainers.Minio --version 3.9.0
Usage:
var minioContainer = new MinioBuilder()
  .WithImage("minio/minio:RELEASE.2023-01-31T02-24-19Z")
  .Build();
await minioContainer.StartAsync();