mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-02-02 20:34:40 +07:00
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
|