File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070 # Escape period characters so sed interprets them literally
7171 cur_ver="${cur_ver//./\\.}"
7272
73- declare -a upd_files=( .env README.md )
73+ declare -a upd_files=( .env README.md */Dockerfile extensions/*/Dockerfile )
7474 if [ -f tls/README.md ]; then
7575 upd_files+=( tls/README.md )
7676 fi
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
33# https://www.docker.elastic.co/
4- FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
4+ FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.15.1 }
55
66# Add your elasticsearch plugins setup here
77# Example: RUN elasticsearch-plugin install analysis-icu
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
33# https://www.docker.elastic.co/
4- FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION}
4+ FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-8.15.1 }
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
3- FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION}
3+ FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-8.15.1 }
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
3- FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION}
3+ FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION:-8.15.1 }
44
55# Ensure the 'state' directory exists and is owned by the 'elastic-agent' user,
66# otherwise mounting a named volume in that location creates a directory owned
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
3- FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION}
3+ FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-8.15.1 }
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
3- FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION}
3+ FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-8.15.1 }
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
33# https://www.docker.elastic.co/
4- FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION}
4+ FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-8.15.1 }
55
66# Add your kibana plugins setup here
77# Example: RUN kibana-plugin install <name|url>
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
33# https://www.docker.elastic.co/
4- FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION}
4+ FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-8.15.1 }
55
66# Add your logstash plugins setup here
77# Example: RUN logstash-plugin install logstash-filter-json
Original file line number Diff line number Diff line change 11ARG ELASTIC_VERSION
22
33# https://www.docker.elastic.co/
4- FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
4+ FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.15.1 }
55
66ENTRYPOINT ["/entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments