mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 23:27:23 +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
|