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

Documentation

Java Node.js

Description

HiveMQ is an MQTT broker and a client based messaging platform designed for the fast, efficient and reliable movement of data to and from connected IoT devices.

Examples

Dependency:
<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>hivemq</artifactId>
    <version>1.20.0</version>
    <scope>test</scope>
</dependency>
Usage:
var hivemqCe = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce")
  .withTag("2021.3"))
hivemqCe.start();
Dependency:
npm install @testcontainers/hivemq --save-dev
Usage:
const container = await new HiveMQContainer().start();