From ac3c08ed83ff551e01223eb4e8cbe0d23d010b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Fri, 9 Feb 2024 11:20:40 -0500 Subject: [PATCH] compose: ensure we use PostgreSQL 15, like in production `docker.io/library/postgres:alpine` is actually pointing on PostgreSQL 16 which is not the version we run in production. By pinning on `15-alpine` we reduce the delta with our target environment and reduce the risk of introducing some breaking changes in the future. --- tools/docker-compose/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker-compose/compose.yaml b/tools/docker-compose/compose.yaml index 555332fb1..5de39ddd8 100644 --- a/tools/docker-compose/compose.yaml +++ b/tools/docker-compose/compose.yaml @@ -80,7 +80,7 @@ services: - dbnet db: platform: linux/amd64 - image: docker.io/library/postgres:alpine + image: docker.io/library/postgres:15-alpine environment: - POSTGRES_PASSWORD=wisdom - POSTGRES_DB=wisdom