I know this error relate to DNS lookup timed out error, means it is a network connectivity error or proxy related error. However I do not know how to fix it.
I use docker-compose.yml ,and 3 containers are inside.
This is my docker-compose.yml. as link
I created 2 networks to divide external and internal network. All request from the client are going through Nginx,port:8090 which only is expose to the internet.
The issue is that I got the error message "getaddrinfo EAI_AGAIN exampleAuth.auth0.com:443" when I send request to verify users from API container(internal network).
Here is what I have tried to so far
- I tried to add DNS 8.8.8.8 in docker demon
- ping 8.8.8.8 from API container (it does not work)
- ping 8.8.8.8 from Nginx container (it does work)
- ping between internal and default entwork is find
Do you guys have any idea?