From c7cb3bed2643d20fe5beee413ff5fcbf4233b61b Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Thu, 19 Feb 2026 19:35:57 +0300 Subject: [PATCH] Upgrade PostgreSQL to 18 in the Getting Started guide --- src/guide/start/databases.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/guide/start/databases.md b/src/guide/start/databases.md index 1ed8aef5..7e3bee59 100644 --- a/src/guide/start/databases.md +++ b/src/guide/start/databases.md @@ -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: @@ -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. -