diff --git a/backend/services/docker-compose.yml b/backend/services/docker-compose.yml index b40ce8fe..15ae7079 100644 --- a/backend/services/docker-compose.yml +++ b/backend/services/docker-compose.yml @@ -311,6 +311,9 @@ services: - KAFKA_BROKERS=kafka:29092 - KAFKA_CLIENT_ID=reward-service - KAFKA_GROUP_ID=reward-service-group + # External Service URLs + - REFERRAL_SERVICE_URL=http://rwa-referral-service:3004 + - AUTHORIZATION_SERVICE_URL=http://rwa-authorization-service:3009 depends_on: postgres: condition: service_healthy @@ -318,6 +321,10 @@ services: condition: service_healthy kafka: condition: service_started + referral-service: + condition: service_healthy + authorization-service: + condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3005/api/v1/health"] interval: 30s