macosnginxdockerport80

Can't access docker container on port 80 on OSX


In my current job we have development environment made with docker-compose. One container is nginx, which provide routing to other containers. Everything seems fine and work to my colleague on windows and osx. But on my system (osx El Capitan), there is problem with accessing nginx container on port 80.

There is setup of container from docker-compose.yml

nginx:
    build: ./dockerbuild/nginx
    ports:
        - 80:80
    links:
        - php
    volumes_from:
        - app
... and more

In ./dockerbuild/nginx there is nothing special, just nginx config as we know it from everywhere.

When I run everyting with docker-compose create and docker-compose start. Then docker ps give me

3b296c1e4775        docker_nginx           "nginx -g 'daemon off"   About an hour ago   Up 47 minutes       0.0.0.0:80->80/tcp, 443/tcp        docker_nginx_1

But when I try to access it for example via curl I get error. curl: (7) Failed to connect to localhost port 80: Connection refused

I try to run container with port 81 and everything works fine.

Port is really binded to docker

22:47 $ sudo lsof -i -n -P | grep TCP
...
com.docke 14718         schovi   38u  IPv4 0x6e9c93c51ec4b617      0t0    TCP *:80 (LISTEN)
...

Firewall in osx is turned off and I have no other security.


Solution

  • Solved!

    Problem was, that long long time ago I installed pow (super simple automated rails server which run application on app_name.local domain). And this beast left LaunchAgent script which update pf to forward port 80 to pow port.