Description
Dynalite is an implementation of Amazon’s DynamoDB built on LevelDB that aims to match live DynamoDB instances as closely as possible, including all limits and error messages.Examples
Dependency:
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>dynalite</artifactId>
<version>1.20.0</version>
<scope>test</scope>
</dependency>
Usage:
var dynamoDB = new DynaliteContainer(DockerImageName.parse(
"quay.io/testcontainers/dynalite:v1.2.1-1"
));
dynamoDB.start();