From 9533029eb9dfdbc1fc97e1370defd366bace3bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 16 Oct 2025 17:10:49 +0200 Subject: [PATCH] Specify distribution in postrgres Docker image Debian 13 (Trixie) has become the default distribution for postgres Docker images. However, we're using Debian 12 (Bookworm) for our Ruby image. While it isn't strictly necessary, it makes sense to use the same distribution in the two Docker images we depend on. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9fa49af98..63bd78c84 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: # use the preferred version of the official Postgres image # see https://hub.docker.com/_/postgres/ - image: postgres:13.16 + image: postgres:13.16-bookworm environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=$POSTGRES_PASSWORD