HI I have my web app running on my local machine and connected to Mysql workbench, I am now trying to dockerize the webapp. I can\'t seem to get it to conne
As mentioned on this post, you can try 2 things:
docker network create -d bridge --subnet 192.168.0.0/24 --gateway 192.168.0.1 dockernet
This answer also show how can you obtain the host IP inside the docker container.