React app (in a docker container) cannot access API (in a docker container) on AWS EC2
问题 my question in a nutshell... Within the context of AWS EC2 hosting, what do I need to do to allow my frontend container to fetch from an endpoint on my backend container, locally? Details: I have 2 Docker containers running via docker-compose. Locally, they work fine and I am able to query the backend container (which is a node app) from my frontend container (a React app) using: http://localhost:3000/someendpoint After moving everything onto an AWC EC2 instance I am no longer able to connect