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