🚀 Our inaugural State of Local Development and Testing report is live! Explore insights & best practices now

Documentation

Java Go .NET

Official Modules

AtomicJar partners 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();
container, err := localstack.RunContainer(ctx, testcontainers.WithImage("localstack/localstack:1.4.0"))
var localStackContainer = new LocalStackBuilder()
  .WithImage("localstack/localstack:2.0")
  .Build();
await localStackContainer.StartAsync();