Skip to content

Commit 4669978

Browse files
committed
build(ci): align dev postgres service with PG branch (glibc image, localhost bind)
Keeps the aggregation merge conflict-free: both branches now carry the identical block. Claude-Session: https://claude.ai/code/session_01NrWVk8oMToieU6y3yDtYpY
1 parent a923cc7 commit 4669978

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,17 @@ services:
174174
volumes:
175175
- data-s3:/data:rw
176176

177-
# PostgreSQL development instance.
177+
# PostgreSQL development instance. Same glibc image as postgres_test —
178+
# the alpine (musl) variant has different collation behavior, and there is
179+
# a collation_test.go that would pass on one and fail on the other.
178180
postgres:
179-
image: postgres:16-alpine
181+
image: ${FLEET_POSTGRES_IMAGE:-postgres:16}
180182
environment:
181183
POSTGRES_USER: fleet
182184
POSTGRES_PASSWORD: insecure
183185
POSTGRES_DB: fleet
184186
ports:
185-
- "5433:5432"
187+
- "127.0.0.1:5433:5432"
186188
volumes:
187189
- postgres-persistent-volume:/var/lib/postgresql/data
188190

0 commit comments

Comments
 (0)