Skip to content

Commit 0447014

Browse files
committed
fix: ensure the latest postgres 17 container is pulled
So we have continuous feedback on any breakages in the Postgres 17 release series.
1 parent 3e4fff2 commit 0447014

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
postgres: &postgres
33
image: postgres:17
4+
pull_policy: always
45
container_name: postgres
56
environment:
67
PGPORT: 5432

tests/docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
postgres: &postgres
33
image: postgres:17
4+
pull_policy: always
45
container_name: postgres
56
command: -c 'config_file=/etc/postgresql/postgresql.conf'
67
restart: always

0 commit comments

Comments
 (0)