Skip to content

Commit

Permalink
chore(sqs-example): Update localstack from 2.2.0 to 3.3.0 (latest)
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0r040 committed Apr 12, 2024
1 parent b5cf93c commit 5b9b8c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions springwolf-examples/springwolf-sqs-example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- localstack

localstack:
image: localstack/localstack:2.2.0
image: localstack/localstack:3.3.0
environment:
- DEBUG=${DEBUG-}
- AWS_REGION=eu-central-1
Expand All @@ -24,7 +24,7 @@ services:
- "${TMPDIR:-/tmp/localstack}:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
localstack_setup:
image: localstack/localstack:2.2.0
image: localstack/localstack:3.3.0
links:
- localstack
depends_on:
Expand All @@ -33,4 +33,4 @@ services:
entrypoint: [ "bash", "-c", "
awslocal --endpoint-url=http://localstack:4566 sqs create-queue --queue-name another-queue --region eu-central-1;
awslocal --endpoint-url=http://localstack:4566 sqs create-queue --queue-name example-queue --region eu-central-1;
" ]
" ]
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class SqsTestContainerExtension implements BeforeAllCallback, ExtensionCo
private static volatile boolean started = false;

static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.2.0")).withServices(SQS);
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.3.0")).withServices(SQS);

@Override
public void beforeAll(ExtensionContext extensionContext) throws Exception {
Expand Down

0 comments on commit 5b9b8c0

Please sign in to comment.