Description
Apache ActiveMQ Artemis is an open source project to build a multi-protocol, embeddable, very high performance, clustered, asynchronous messaging system.Examples
Dependency:
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>activemq</artifactId>
<version>1.20.0</version>
<scope>test</scope>
</dependency>
Usage:
var artemis = new ArtemisContainer("apache/activemq-artemis:2.30.0-alpine");
artemis.start();
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/artemis
Usage:
artemisContainer, err := artemis.Run(ctx, "docker.io/apache/activemq-artemis:2.30.0-alpine")
Dependency:
dotnet add package Testcontainers.ActiveMq --version 3.9.0
Usage:
var artemisContainer = new ArtemisBuilder()
.WithImage("apache/activemq-artemis:2.31.2")
.Build();
await artemisContainer.StartAsync();