How to see Nginx default page using vagrant docker provider? How to see Nginx default page using vagrant docker provider? nginx nginx

How to see Nginx default page using vagrant docker provider?


This is several months old, but I'll answer anyway for the sake of other people that might land here:

Use docker ps to see your image identifier, should be 'b798ea3309612fb2'

and then do:

docker inspect b798ea3309612fb2 | grep IPAddress

So you'll confirm the IP address.

Since you're exposing the ports, you should see them in your REAL (whatever container you're using for Vagrant) IP.Make sure there is no firewall blocking them.