I have created a Docker container with a tomcat server. I have started the tomcat server and i can see the logs that tomcat server started successfully. I used the following command to run the container
docker run -p 8092:8092 -dti cs2 /bin/bash
Once the tomcat server started, i tried to access the site from the parent host of the docker container. I tried accessing the site using the following url's
//192.168.99.100:8092/
//192.168.99.100:8092/cs/wbs
I am not able to hit any above url's. I always see that site cannot be reached.
I also tried by adding my container to an newly created network like below, still no luck on accessing the site
docker run -p 8092:8092 --network my-network -dti cs2 /bin/bash
When i docker ps, i get the following container information as like in the screenshot
Please click here to see the container information
Any help on this would be appreciable