Skip to content

Commit 9539e27

Browse files
committed
chore: update Postgres docker to v18
1 parent 99c12b4 commit 9539e27

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

apps/go-modular/pkg/testutils/testcontainer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func (te *TestEnv) SetupPostgres() (*pgxpool.Pool, string, error) {
4747
var err error
4848
te.postgresC, err = testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
4949
ContainerRequest: testcontainers.ContainerRequest{
50-
Image: "postgres:18rc1-alpine",
50+
Image: "postgres:18-alpine",
5151
ExposedPorts: []string{"5432/tcp"},
5252
Env: map[string]string{
5353
"POSTGRES_PASSWORD": "testpass",

docker/_stacks_/postgres.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
services:
44
pgsql:
5-
# image: pgduckdb/pgduckdb:${PGSQL_VERSION:-17-main}
6-
image: postgres:${PGSQL_VERSION:-18beta3-alpine}
5+
image: postgres:${PGSQL_VERSION:-18-alpine}
76
hostname: postgres
87
restart: unless-stopped
98
ports: ['5432:5432']

0 commit comments

Comments
 (0)