Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update localstack to 2.2.0 #1215

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ ForEach ($libraryProject in $libraryProjects) {
}

if (($null -ne $env:CI) -And ($EnableIntegrationTests -eq $true)) {
& docker pull --quiet localstack/localstack:2.0.2
& docker run -d --name localstack -p 4566:4566 localstack/localstack:2.0.2
& docker pull --quiet localstack/localstack:2.2.0
& docker run -d --name localstack -p 4566:4566 localstack/localstack:2.2.0
$env:AWS_SERVICE_URL = "http://localhost:4566"
}

Expand Down
2 changes: 1 addition & 1 deletion tests/JustSaying.IntegrationTests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
localstack:
container_name: localstack
restart: unless-stopped
image: localstack/localstack:2.0.2
image: localstack/localstack:2.2.0
ports:
- 4566:4566
environment:
Expand Down