Manuel
dd4bbc4b22
* Update ElasticSearch and Kibana version * Remove nginx config and cert generation for use of reverse proxy on host * Replace geoip updater with crazymax image * Update formatting to have unix line endings * Rename docker-compose.yml to compose.yml * Add explicit network to compose.yml for use with ipv6 (optional)
8 lines
136 B
Docker
8 lines
136 B
Docker
FROM alpine:latest
|
|
|
|
ADD start.sh /start.sh
|
|
|
|
RUN apk add --no-cache curl jq bash \
|
|
&& chmod +x /start.sh
|
|
|
|
ENTRYPOINT [ "/start.sh" ]
|