Howdy,
I’ve installed docker for windows with linux container.
Then I’ve build a website image and put to run on port 8080.
(command: docker run -d mywebsite -p 80:8080).
The problem is that I cant access my website from broswer using http://localhost:8080.
My ip address is 192.168.0.51 and my container ip is 172.17.0.2.
I know that I have to expose the port of my container, and I did it. But I still not able to ping the container ip nor access it from web browser.
Appreciate any help!
- Alberto