mirror of
https://github.com/rlister/dockerfiles.git
synced 2025-12-13 01:36:20 +00:00
This allows us to pass bind address in entrypoint instead of perpetrating a sed hack on the hard-coded localhost IP.
11 lines
240 B
Docker
11 lines
240 B
Docker
FROM alpine:3.3
|
|
|
|
MAINTAINER Ric Lister <rlister@gmail.com>
|
|
|
|
RUN apk add --update nodejs && \
|
|
npm install aws-es-kibana@1.0.4 -g
|
|
|
|
EXPOSE 9200
|
|
|
|
## need to bind eth0 inside container, not lo0
|
|
ENTRYPOINT [ "aws-es-kibana", "-b", "0.0.0.0" ] |