I have 2 docker containers running one with node which is my backend code and another with react build running on node, how do I link between the containers so that my react API calls are fulfilled via my node backend container.
I'm running the containers using ECS and routing using ALB, both my containers are in different target groups and the same cluster.
Actual Result:- Both the containers are running individually but there is no response to the API calls made using react. Expected Result:- API requests should be fulfilled using the other node container.