From f3ce095b7104e13b63e2226853a5d2de0b6b3268 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sat, 25 Oct 2025 17:05:49 +0200 Subject: [PATCH] docs: Add summary for Postgres container setup in quickstart guide --- docs/quickstart.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/quickstart.md b/docs/quickstart.md index 6a4eee6..8a34938 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -128,6 +128,13 @@ For local validation without installing Postgres directly, use the provided comp docker compose -f docker-compose.postgres.yml up -d ``` +#### Summary + +1. Start the Postgres container with `docker compose -f docker-compose.postgres.yml up -d`. +2. Export the granular database environment variables (host `127.0.0.1`, port `5433`, database `calminer_local`, user/password `calminer`/`secret`). +3. Run the setup script twice: first with `--dry-run` to preview actions, then without it to apply changes. +4. When finished, stop and optionally remove the container/volume using `docker compose -f docker-compose.postgres.yml down`. + The service exposes Postgres 16 on `localhost:5433` with database `calminer_local` and role `calminer`/`secret`. When the container is running, set the granular environment variables before invoking the setup script: ```powershell