Skip to content

Commit

Permalink
fix : issue with build
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Aug 11, 2024
1 parent e91b886 commit f7ec517
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws-kinesis-project/consumer/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:

localstack:
image: localstack/localstack:3.6.0
image: localstack/localstack:3.5.0
ports:
- "4566:4566"
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class TestKinesisConsumerApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>("postgres:16.3-alpine");
return new PostgreSQLContainer<>("postgres:16.4-alpine");
}

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class LocalStackConfig {

static LocalStackContainer localStackContainer =
new LocalStackContainer(
DockerImageName.parse("localstack/localstack").withTag("3.6.0"));
DockerImageName.parse("localstack/localstack").withTag("3.5.0"));

static {
localStackContainer.start();
Expand Down

0 comments on commit f7ec517

Please sign in to comment.