File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Standard development uses `dev-backend` + `dev-frontend` in separate terminals.
3737The 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)
4141make migrate # apply the agentevals schema
4242make dev-backend-pg # pg-up + migrate + serve --dev with backend=postgres wired up
4343make pg-down # stop the container; data is discarded with --rm
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments