From 93f6e2386149621a9d8ce95a59e4c6d8708c3125 Mon Sep 17 00:00:00 2001 From: Talal Sharabi Date: Mon, 13 Apr 2026 12:54:35 +0400 Subject: [PATCH] fix(deploy): restore backend host binding for proxy connectivity Keep Postgres restricted to localhost, but re-expose backend on host port 5001 so the external reverse proxy can reach API routes reliably. Made-with: Cursor --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4b95db1..70821aa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,7 +40,7 @@ services: postgres: condition: service_healthy ports: - - "127.0.0.1:5001:5001" + - "5001:5001" healthcheck: test: ["CMD-SHELL", "wget -qO- http://localhost:5001/api/v1/health || exit 1"] interval: 30s