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.
This commit is contained in:
Javi Martín
2025-10-16 17:10:49 +02:00
parent 700719a66d
commit 9533029eb9

View File

@@ -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