mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
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:
co-authored by
Claude Opus 4.6
Zaki Manian
parent
fe91ba2ab4
commit
605a4ba46e
+1
-1
@@ -3,7 +3,7 @@ services:
|
|||||||
postgres:
|
postgres:
|
||||||
image: pgvector/pgvector:pg16
|
image: pgvector/pgvector:pg16
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "127.0.0.1:5432:5432"
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: ironclaw
|
POSTGRES_DB: ironclaw
|
||||||
POSTGRES_USER: ironclaw
|
POSTGRES_USER: ironclaw
|
||||||
|
|||||||
Reference in New Issue
Block a user