Merge pull request #980 from codysoyland/977-docker-bind-localhost

Bind the handler to all interfaces (0.0.0.0) in Dockerfile. Fixes #977.
This commit is contained in:
Cody Soyland 2017-11-21 20:21:03 -06:00 committed by GitHub
commit 088847dcef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,4 +18,4 @@ EXPOSE 10101
VOLUME /data
ENTRYPOINT ["/pilosa"]
CMD ["server", "--data-dir", "/data"]
CMD ["server", "--data-dir", "/data", "--bind", "http://0.0.0.0:10101"]