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

Documentation

Java Go

Community Module

These modules are maintained by the community, outside of the Testcontainers project.

Description

Meilisearch is a flexible and powerful user-focused search engine that can be added to any website or application.

Examples

Dependency:
<dependency>
    <groupId>io.vanslog</groupId>
    <artifactId>testcontainers-meilisearch</artifactId>
    <version>1.0.5</version>
    <scope>test</scope>
</dependency>
Usage:
var meilisearch = new MeilisearchContainer(DockerImageName.parse("getmeili/meilisearch:latest"))
  .withMasterKey("masterKey");
meilisearch.start();
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/meilisearch
Usage:
meiliContainer, err := meilisearch.Run(ctx, "getmeili/meilisearch:v1.10.3")