I installed Docker on a Mac using the Docker Toolbox.
I opened Docker Quickstart Terminal and ran
docker run hello-world
That works fine.
Then I tried:
docker run -d -p 8080:80 nginx
I can see that the container is added. docker log
with the container id returns nothing but I think that's normal?
When I browse to localhost:8080
with chrome I don't see the nginx welcome page. I've tried running a few different containers that are supposed to serve traffic but none of them have worked. The existing github issues and SO questions all seem to be talking about things which don't exist anymore - or at least are not default on Mac OSX.