Skip to content

Commit

Permalink
ES downgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <[email protected]>
  • Loading branch information
Adrian Cole committed Dec 5, 2023
1 parent 4a19719 commit a38d1b2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker/test-images/zipkin-elasticsearch7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,14 @@ WORKDIR /install
# Use latest 7.x version from https://www.elastic.co/downloads/past-releases#elasticsearch
# This is defined in many places because Docker has no "env" script functionality unless you use
# docker-compose: When updating, update everywhere.
ARG elasticsearch7_version=7.17.15
#
# TODO: 7.10.2 is the last OSS no-jdk version. To update requires a switch to non OSS.
# See https://www.elastic.co/downloads/past-releases#elasticsearch-oss-no-jdk
ARG elasticsearch7_version=7.10.2

# Download only the OSS distribution (lacks X-Pack)
RUN \
# Connection resets are frequent in GitHub Actions workflows
# Connection resets are frequent in GitHub Actions workflows \
wget --random-wait --tries=5 -qO- \
# We don't download bin scripts as we customize for reasons including BusyBox problems
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${elasticsearch7_version}-no-jdk-linux-x86_64.tar.gz| tar xz \
Expand All @@ -49,7 +52,7 @@ COPY --from=scratch /config/ ./config/

FROM ghcr.io/openzipkin/java:${java_version}-jre as zipkin-elasticsearch7
LABEL org.opencontainers.image.description="Elasticsearch OSS distribution on OpenJDK and Alpine Linux"
ARG elasticsearch7_version=7.17.15
ARG elasticsearch7_version=7.10.2
LABEL elasticsearch-version=$elasticsearch7_version

# Add HEALTHCHECK and ENTRYPOINT scripts into the default search path
Expand Down

0 comments on commit a38d1b2

Please sign in to comment.