From b5f9702bb1d33a6cc2c44f96cb3c16730588dc11 Mon Sep 17 00:00:00 2001 From: Pl217 Date: Fri, 10 May 2024 14:05:50 +0200 Subject: [PATCH] Update Postgres images to 14.12 This is done to match the production version which is used on AWS RDS, according to the most recent maintenance by OPS in ticket OPS-10475. This API depends on v3 API to start the database, thus integrated compose file is used, instead of standalone `compose.yaml` file in root of the repo. Even though this file isn't usually used, update Postgres version to keep them in sync. --- compose.yaml | 2 +- tests/compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 7a58fa81..4a8a7869 100644 --- a/compose.yaml +++ b/compose.yaml @@ -24,7 +24,7 @@ services: depends_on: - db db: - image: postgres:14.8-alpine3.18 + image: postgres:14.12-alpine3.19 environment: - POSTGRES_PASSWORD=demo - POSTGRES_USER=demo diff --git a/tests/compose.yaml b/tests/compose.yaml index 5ffb27a5..327d62a7 100644 --- a/tests/compose.yaml +++ b/tests/compose.yaml @@ -1,6 +1,6 @@ services: db: - image: postgres:14.8-alpine3.18 + image: postgres:14.12-alpine3.19 ports: - 6432:5432 environment: