Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MinIO for Node.js #5

Merged
merged 2 commits into from
Jan 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions modules/minio/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@ docs:
```bash
pip install testcontainers[minio]
```
- id: nodejs
url: https://node.testcontainers.org/modules/minio/
maintainer: core
example: |
```javascript
const container = await new MinioContainer("minio/minio:RELEASE.2024-12-13T22-19-12Z").start();
```
installation: |
```bash
npm install @testcontainers/minio --save-dev
```
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.
---
Loading