Telegram: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
README.md (Docker section) says docker compose up starts "Postgres database on port `5432`". But docker-compose.yml maps the Postgres container with ports: ["5433:5432"], i.e. it's reachable on host port 5433, not 5432. A contributor following the README who tries to connect a local client to localhost:5432 (or sets DATABASE_URL accordingly) will fail or hit a different/unrelated Postgres.
Acceptance criteria
Files to touch
README.md
- (or)
docker-compose.yml
Out of scope
- The backend compose env gaps (separate issue).
Telegram: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
README.md(Docker section) saysdocker compose upstarts "Postgres database on port `5432`". Butdocker-compose.ymlmaps the Postgres container withports: ["5433:5432"], i.e. it's reachable on host port 5433, not 5432. A contributor following the README who tries to connect a local client tolocalhost:5432(or setsDATABASE_URLaccordingly) will fail or hit a different/unrelated Postgres.Acceptance criteria
5433(or change the compose mapping to5432:5432and keep the README), so doc and compose agreeDATABASE_URLexample if relevantFiles to touch
README.mddocker-compose.ymlOut of scope