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

Official Module

LocalStack
We partner with software vendors to maintain and certify official modules.

Description

LocalStack is a fully functional local AWS cloud stack. This module allows you to develop your cloud and serverless apps without actually using the cloud.

Examples

var localstack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:0.11.3"));
localstack.start();
localstackContainer, err := localstack.RunContainer(ctx, testcontainers.WithImage("localstack/localstack:1.4.0"))
var localStackContainer = new LocalStackBuilder()
  .WithImage("localstack/localstack:2.0")
  .Build();
await localStackContainer.StartAsync();
const container = await new LocalstackContainer().start();