christianalfoni / webpack-express-boilerplate

A boilerplate for running a Webpack workflow in Node express
MIT License
1.39k stars 292 forks source link

fix: bind to IP 0.0.0.0 instead of localhost #18

Closed joscha closed 8 years ago

joscha commented 8 years ago

When binding to localhost within a docker container and using docker-compose to compose multiple docker containers together the binding can get lost, as hostnames are juggled around by docker. Binding to 0.0.0.0 fixes this. On a "normal" system, this change makes no difference.

christianalfoni commented 8 years ago

Okay, cool, thanks :-)