From c527b3d6d036e628078684b9d8f1c09efdd81056 Mon Sep 17 00:00:00 2001 From: Carlos Escalante Date: Tue, 14 Jul 2026 18:46:04 -0600 Subject: [PATCH] Fix production assistant backend DNS --- docker-compose.prod.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index a985637..aee20ea 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -59,8 +59,9 @@ services: restart: unless-stopped environment: NODE_ENV: production - BACKEND_URL: http://wealthysmart-backend-prod:8000 - AGENT_URL: http://wealthysmart-backend-prod:8000/api/v1/agent/agui + # Compose service names are the stable DNS names on this network. + BACKEND_URL: http://backend:8000 + AGENT_URL: http://backend:8000/api/v1/agent/agui JWT_SECRET: ${SECRET_KEY} COOKIE_DOMAIN: wealth.cescalante.dev COOKIE_SECURE: "true"