Skip to content

Commit fa8e5c6

Browse files
committed
fixup! [tmp] io method sync
1 parent 1075fe7 commit fa8e5c6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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..."

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docker/postgres18-sync/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
55
CMD ["postgres", "-c", "io_method=sync"]

0 commit comments

Comments
 (0)