From e31e2f7950b03db4581438cbc2793fc6149faa32 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:30:37 +0530 Subject: [PATCH] chore(deps): update postgres docker tag to v17 (#413) * chore(deps): update postgres docker tag to v17 * Update postgresql version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Raja Kolli --- docker/docker-compose.yml | 2 +- .../com/learning/mfscreener/common/SQLContainersConfig.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 40229b36..732a62f0 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,7 +1,7 @@ services: postgresqldb: - image: postgres:16.6-alpine + image: postgres:17.2-alpine hostname: postgresqldb container_name: postgresqldb extra_hosts: [ 'host.docker.internal:host-gateway' ] diff --git a/src/test/java/com/learning/mfscreener/common/SQLContainersConfig.java b/src/test/java/com/learning/mfscreener/common/SQLContainersConfig.java index fd252853..53890657 100644 --- a/src/test/java/com/learning/mfscreener/common/SQLContainersConfig.java +++ b/src/test/java/com/learning/mfscreener/common/SQLContainersConfig.java @@ -14,6 +14,6 @@ public class SQLContainersConfig { @ServiceConnection @RestartScope PostgreSQLContainer postgreSQLContainer() { - return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("16.4-alpine")); + return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.2-alpine")); } }