Hello
I have successfully installed docker toolbox for my windows Home edition machine, i would create an image to run symfony php framework on ubuntu
I have done the next things:
docker run --name web -p 80:80 -i -t ubuntu:latest /bin/bash
it’s ok i’m in the container, access to ubuntu bash and the container is up
i install apache
apt-get update
apt-get install apache2
everything looks normal
then i start apache
* Restarting Apache httpd web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
I think this warning is “normal”
But when i look in my browser on http:localhost, i get a 404 error, Does it comes from my docker install or something else ?
thanks by advance