Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,16 @@ services:
PORT: "8000"
EVO_AI_CRM_URL: http://evo-crm:3000
CORE_SERVICE_URL: http://evo-core:5555/api/v1
EVO_AUTH_BASE_URL: http://evo-auth:3001
volumes:
- processor_logs:/app/logs
depends_on:
postgres:
condition: service_healthy

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue: Double-check that the evo-auth service defines a compatible healthcheck since processor now depends on it.

Ensure evo-auth’s healthcheck only reports healthy once the auth API is actually ready to handle requests; otherwise the new service_healthy dependency may still allow flaky startup ordering.

redis:
condition: service_healthy
evo-auth:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
Expand Down
Loading