Skip to content

Commit

Permalink
Bumped localstack docker image to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noctarius committed Nov 30, 2023
1 parent 03a40ab commit 6f28cf0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testsupport/containers/localstack.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ package containers
import (
"context"
"fmt"

"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/modules/localstack"
)
Expand All @@ -33,7 +34,8 @@ func setupLocalStack(
req.Env["EAGER_SERVICE_LOADING"] = "1"
})

container, err := localstack.RunContainer(context.Background(), config, customizer)
container, err := localstack.RunContainer(context.Background(),
config, customizer, testcontainers.WithImage("localstack/localstack:3.0.1"))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6f28cf0

Please sign in to comment.