File tree Expand file tree Collapse file tree
aws-cloudwatch-project/src/test/java/com/example/awsspring/common
aws-kinesis-project/consumer/src/test/java/com/learning/aws/spring/common
aws-lambda-project/src/test/java/com/learning/awslambda
aws-parameterstore-project/src/test/java/com/example/awsspring
aws-s3-project/src/test/java/com/learning/awspring/common
aws-secretmanager-project/src/test/java/com/example/awsspring/common
aws-sqs-project/src/test/java/com/learning/awspring/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ LocalStackContainer localstackContainer() {
2020 @ Bean
2121 @ ServiceConnection
2222 PostgreSQLContainer postgreSQLContainer () {
23- return new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.1 -alpine" ));
23+ return new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.3 -alpine" ));
2424 }
2525}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ LocalStackContainer localStackContainer() {
2121 @ Bean
2222 @ ServiceConnection
2323 PostgreSQLContainer postgreSQLContainer () {
24- return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.1 -alpine" ));
24+ return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.3 -alpine" ));
2525 }
2626
2727 @ Bean
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class ApplicationIntegrationTest {
6161 static Network network = Network .newNetwork ();
6262
6363 @ Container
64- static PostgreSQLContainer postgres = new PostgreSQLContainer ("postgres:18.1 -alpine" )
64+ static PostgreSQLContainer postgres = new PostgreSQLContainer ("postgres:18.3 -alpine" )
6565 .withNetwork (network )
6666 .withNetworkAliases ("postgres" )
6767 .withReuse (true );
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ public class ContainersConfig {
1212 @ Bean
1313 @ ServiceConnection
1414 PostgreSQLContainer postgreSQLContainer () {
15- return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.1 -alpine" ));
15+ return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.3 -alpine" ));
1616 }
1717}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class TestApplication {
1313 @ Bean
1414 @ ServiceConnection
1515 PostgreSQLContainer sqlContainer () {
16- return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.1 -alpine" ));
16+ return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.3 -alpine" ));
1717 }
1818
1919 public static void main (String [] args ) {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class SQLContainerConfig {
1414 @ ServiceConnection
1515 @ RestartScope
1616 PostgreSQLContainer postgresContainer () {
17- return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.1 -alpine" ))
17+ return new PostgreSQLContainer (DockerImageName .parse ("postgres:18.3 -alpine" ))
1818 .withReuse (true );
1919 }
2020}
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ public interface DBTestContainer {
99
1010 @ Container @ ServiceConnection
1111 PostgreSQLContainer sqlContainer =
12- new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.1 -alpine" ));
12+ new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.3 -alpine" ));
1313}
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ public class SQLTestcontainersConfig {
1212 @ Bean
1313 @ ServiceConnection
1414 PostgreSQLContainer postgreSQLContainer () {
15- return new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.1 -alpine" ));
15+ return new PostgreSQLContainer (DockerImageName .parse ("postgres" ).withTag ("18.3 -alpine" ));
1616 }
1717}
You can’t perform that action at this time.
0 commit comments