Created the apache web server as a Docker container, but wants to access it in the windows os browser as localhost.
I can access the web server with the private IP address of boot2docker, which is 192.168.59.103, but would like to access the web server as localhost ie 127.0.0.1.
Below is the setup of my Docker Container
Running Boot2docker on Oracle VM Open Ports: "EXPOSE 80 443" in Docker File
The command used to create the Docker file:
docker run --net=host --name=webserver1 -v /home/data:/data/www/www.samplewebserber.com -v `password`:/scripts -d folder/serverfolder /scripts/run.sh
docker boot2docker portforwarding
user1581721
source share