Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/guide/start/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ services:
condition: service_healthy

db:
image: postgres:${POSTGRES_VERSION:-15}-alpine
image: postgres:${POSTGRES_VERSION:-18}-alpine
environment:
POSTGRES_DB: app
POSTGRES_PASSWORD: password
POSTGRES_USER: user
volumes:
- ../runtime/db:/var/lib/postgresql/data:rw
- ../runtime/db:/var/lib/postgresql:rw
ports:
- "${DEV_DB_PORT:-5432}:5432"
healthcheck:
Expand Down Expand Up @@ -732,4 +732,3 @@ to repeat yourself and add some extra middleware, such as authentication, to the
## Trying it out

Now try it out by opening `http://localhost/pages` in your browser.