I am running tomcat in my docker container from the Official Repo.
docker pull tomcat
And as per guidelines stated in the homepage I've run the instance and the Tomcat server is started
docker run -it --rm -p 8888:8080 tomcat:8.0
And Tomcat server is available on the port 8888. I am able to get the response in the boot2docker when I execute the following command
curl localhost:8888
But I would like to access the page from my web browser installed in my PC (which is out of the Virtual Box, the one that is installed in my Windows). Can I? If so how?