From 5cc20bbe2256a45b995220117d513d2c16080095 Mon Sep 17 00:00:00 2001 From: "Juan A. Garcia Pardo" Date: Tue, 22 Aug 2023 11:04:13 +0200 Subject: [PATCH] Workaround docker incompatibility issue with postgres:latest See https://github.com/docker-library/postgres/issues/1100 --- .circleci/docker-compose.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/docker-compose.yml b/.circleci/docker-compose.yml index a214e347..7b4bce9d 100644 --- a/.circleci/docker-compose.yml +++ b/.circleci/docker-compose.yml @@ -32,7 +32,12 @@ services: POSTGRES_PASSWORD: scionlab_rw_passw0rd coord-db: - image: postgres:latest + # Latest postgres docker image uses the new Debian bookworm and it is incompatible with some + # existing docker implementations. CircleCI runs one of those older implementations. + # Pinning the image to N-bullseye (prior Debian distribution) as a workaround. + # https://github.com/docker-library/postgres/issues/1100 + # image: postgres:latest + image: postgres:12-bullseye networks: - coord_net expose: