Skip to content

Commit

Permalink
Workaround docker incompatibility issue with postgres:latest
Browse files Browse the repository at this point in the history
  • Loading branch information
juagargi committed Aug 22, 2023
1 parent 3de5c3c commit 5cc20bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5cc20bb

Please sign in to comment.