File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 - name : Wait for Postgres to be healthy
101101 run : |
102102 for i in {1..10}; do
103- if docker exec postgres18rc1 -sync pg_isready -U postgres; then
103+ if docker exec postgres18 -sync pg_isready -U postgres; then
104104 exit 0
105105 fi
106106 echo "Waiting for Postgres..."
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
44 postgres :
55 build :
66 context : ./docker/postgres18-sync
7- container_name : postgres18rc1 -sync
7+ container_name : postgres18 -sync
88 environment :
99 POSTGRES_PASSWORD : postgres
1010 POSTGRES_DB : testdb
Original file line number Diff line number Diff line change 1- # Start from the official PostgreSQL 18 RC1 image
2- FROM postgres:18rc1
1+ # Start from the official PostgreSQL 18 image
2+ FROM postgres:18
33
44# Override the default CMD so that io_method=sync is always enabled
55CMD ["postgres" , "-c" , "io_method=sync" ]
You can’t perform that action at this time.
0 commit comments