I have an mysql container (incl. adminer) running on a droplet, I can access the container from my local pc or anywhere on the net using the public ip inside my dotnetcore api container however when i run same container inside the same droplet i get unable to connect to host error.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
What I usually do is to create a Docker network and attached the containers to the same network. Then you could use the name of the MySQL container for your connection string.
Here is how you could do that:
https://www.digitalocean.com/community/questions/how-to-ping-docker-container-from-another-container-by-name
This is a good practice as your database connections would not have to go through the public Droplet IP but would be routed internally via the Docker network.
Let me know how it goes. Regards, Bobby