amann
10/16/2017, 2:38 PMlocalhost
(that I am using for webhooks), does anyone know what the configuration would look like to do this?dpetrick
10/16/2017, 2:58 PMlocalhost
. Why? Because localhost
inside of a docker container means the localhost on the container. You then need to use an IP/domain that allows your webhook to go against your server. Concretely, if you bind your server to 0.0.0.0:8080
then your webhook could to go against <your machine IP, e.g. 192.168.1.2>:8080
.amann
10/16/2017, 3:43 PMdocker.for.mac.localhost
, but was unsuccessfuldpetrick
10/16/2017, 3:53 PMdocker.for.mac.localhost
is in theory your best bet, however, as this doesn’t work, you might be better off just hardcoding your IP in the webhook for now. I will look into improving these scenarios for the local docker workflow in a bit.