Skip to content
Discussion options

You must be logged in to vote

So this wasn't exactly an adonisjs problem,

The complete explanation is here https://stackoverflow.com/a/40091406/10020611.

So the problem was that my two docker container is not sharing same network.
First step I did is to identify the network name of my dockerized app using this command
docker network ls

once i got the network name, type this command to see the network details of your app
docker network inspect networkname

That would show you the details of your network:

"IPAM": {
            "Driver": "default",
            "Options": null,
            "Config": [
                {
                    "Subnet": "0.0.0.0/16",
                    "Gateway": "0.0.0.1"
                }
  …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by kempsteven
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
1 participant