mirror of
https://github.com/deviantony/docker-elk.git
synced 2025-12-16 23:30:19 +01:00
More appropriate name considering that extensions, which aren't part of the "ELK" stack, also rely on this variable.
8 lines
226 B
Docker
8 lines
226 B
Docker
ARG ELASTIC_VERSION
|
|
|
|
# https://www.docker.elastic.co/
|
|
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
|
|
|
|
# Add your elasticsearch plugins setup here
|
|
# Example: RUN elasticsearch-plugin install analysis-icu
|