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

Documentation

Go .NET

Community Module

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

Description

Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability.

DynamoDB local is the downloadable version of Amazon DynamoDB that can be used to develop and test applications without accessing the DynamoDB web service. You can run DynamoDB locally on your computer in multiple ways, including a Docker container.

Examples

dynamodbLocalContainer, err := dynamodblocal.RunContainer(context.Background(), testcontainers.WithImage("amazon/dynamodb-local:2.2.1"))
var dynamoDbContainer = new DynamoDbBuilder()
  .WithImage("amazon/dynamodb-local:1.21.0")
  .Build();
await dynamoDbContainer.StartAsync();