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

Official Module

Weaviate
We partner with software vendors to maintain and certify official modules.

Description

Weaviate is an open source, AI-native vector database that helps developers create intuitive and reliable AI-powered applications.

Examples

Dependency:
<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>weaviate</artifactId>
    <version>1.20.0</version>
    <scope>test</scope>
</dependency>
Usage:
var weaviate = new WeaviateContainer("semitechnologies/weaviate:1.25.5");
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/weaviate
Usage:
weaviateContainer, err := weaviate.Run(ctx, "semitechnologies/weaviate:1.25.5")
Dependency:
npm install @testcontainers/weaviate --save-dev
Usage:
const container = await new WeaviateContainer().start();