Skip to content

Commit 6b41538

Browse files
switch to pg 18.3-alpine
1 parent 4d3e41b commit 6b41538

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Standard development uses `dev-backend` + `dev-frontend` in separate terminals.
3737
The default in-memory backend keeps `make dev-backend` zero-config. To exercise the async run pipeline locally, bring up a Postgres alongside the app:
3838

3939
```bash
40-
make pg-up # start postgres:17-alpine in a docker container (port 5432, ephemeral via --rm)
40+
make pg-up # start postgres:18.3-alpine in a docker container (port 5432, ephemeral via --rm)
4141
make migrate # apply the agentevals schema
4242
make dev-backend-pg # pg-up + migrate + serve --dev with backend=postgres wired up
4343
make pg-down # stop the container; data is discarded with --rm

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pg-up:
6666
-e POSTGRES_USER=$(PG_USER) \
6767
-e POSTGRES_PASSWORD=$(PG_PASSWORD) \
6868
-e POSTGRES_DB=$(PG_DATABASE) \
69-
-p $(PG_PORT):5432 postgres:17-alpine; \
69+
-p $(PG_PORT):5432 postgres:18.3-alpine; \
7070
else \
7171
echo "container $(PG_CONTAINER) already running"; \
7272
fi

charts/agentevals/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ database:
210210
# -- Bundled Postgres image name
211211
name: postgres
212212
# -- Bundled Postgres image tag
213-
tag: "17"
213+
tag: "18.3-alpine"
214214
# -- Bundled Postgres image pull policy
215215
pullPolicy: IfNotPresent
216216
# -- PersistentVolumeClaim size for the bundled Postgres data

0 commit comments

Comments
 (0)