Skip to content

Commit 3e4fff2

Browse files
committed
fix: pin containers for dev and test to Postgres 17
Previously we were using images tagged `postgres:latest`, which was pointing to the latest release in the Postgres 17 series. Postgres 18 was released in the last 24 hours, and `postgres:latest` now points to Postgres 18. There seem to be some changes in the Postgres 18 containers, and volume mounting now breaks consistently in CI and locally. For now we will pin to Postgres 17, and look at supporting Postgres 18 later.
1 parent f5d5329 commit 3e4fff2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
postgres: &postgres
3-
image: postgres:latest
3+
image: postgres:17
44
container_name: postgres
55
environment:
66
PGPORT: 5432

tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
postgres: &postgres
3-
image: postgres:latest
3+
image: postgres:17
44
container_name: postgres
55
command: -c 'config_file=/etc/postgresql/postgresql.conf'
66
restart: always

0 commit comments

Comments
 (0)