Skip to content

Instantly share code, notes, and snippets.

@dklenke

dklenke/.env Secret

Created August 21, 2018 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dklenke/80dc87e61d1f7b1ec2663218ef565f35 to your computer and use it in GitHub Desktop.
Save dklenke/80dc87e61d1f7b1ec2663218ef565f35 to your computer and use it in GitHub Desktop.
ELK_VERSION=6.3.2
ARG ELK_VERSION
# https://github.com/elastic/elasticsearch-docker
FROM docker.elastic.co/elasticsearch/elasticsearch-oss:${ELK_VERSION}
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
ARG ELK_VERSION
# https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana-oss:${ELK_VERSION}
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
ARG ELK_VERSION
# https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash-oss:${ELK_VERSION}
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment