Merge pull request #327 from codysoyland/docker-bind-grpc

Bind to public interface in docker image
This commit is contained in:
Cody Soyland 2020-04-28 14:45:06 -05:00 committed by GitHub
commit ea99f32d36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,8 @@ EXPOSE 10101
VOLUME /data
ENV PILOSA_DATA_DIR /data
ENV PILOSA_BIND http://0.0.0.0:10101
ENV PILOSA_BIND 0.0.0.0:10101
ENV PILOSA_BIND_GRPC 0.0.0.0:20101
ENTRYPOINT ["/pilosa"]
CMD ["server"]