fix(docker): bind postgres to localhost only (#686)

5432:5432 → 127.0.0.1:5432:5432 — the default docker-compose.yml
exposed postgres on all interfaces, making it reachable from the
local network in any docker compose deployment.

Co-authored-by: Claude Opus 4.6 <[email protected]>
Co-authored-by: Zaki Manian <[email protected]>
This commit is contained in:
Nick Stebbings
2026-03-08 20:55:57 +00:00
committed by GitHub
co-authored by Claude Opus 4.6 Zaki Manian
parent fe91ba2ab4
commit 605a4ba46e
+1 -1
View File
@@ -3,7 +3,7 @@ services:
postgres:
image: pgvector/pgvector:pg16
ports:
- "5432:5432"
- "127.0.0.1:5432:5432"
environment:
POSTGRES_DB: ironclaw
POSTGRES_USER: ironclaw