mirror of
https://github.com/ivuorinen/docker-elk.git
synced 2026-02-21 11:51:28 +00:00
Initial commit
This commit is contained in:
12
elasticsearch/Dockerfile
Normal file
12
elasticsearch/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
ARG ELK_VERSION
|
||||
|
||||
# https://github.com/elastic/elasticsearch-docker
|
||||
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELK_VERSION}
|
||||
|
||||
# Add healthcheck
|
||||
COPY scripts/docker-healthcheck .
|
||||
HEALTHCHECK CMD sh ./docker-healthcheck
|
||||
|
||||
# Add your elasticsearch plugins setup here
|
||||
# Example: RUN elasticsearch-plugin install analysis-icu
|
||||
#RUN elasticsearch-plugin install --batch repository-s3
|
||||
Reference in New Issue
Block a user