Skip to content

Commit 0de29e9

Browse files
elasticmachineConky5
authored andcommitted
Contexts for 6.8.3 (#21)
This commit was created by the elastic-dockerfiles-publisher.
1 parent ac4f706 commit 0de29e9

File tree

3 files changed

+30
-18
lines changed

3 files changed

+30
-18
lines changed

elasticsearch/Dockerfile

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
FROM centos:7 AS builder
1515

1616
ENV PATH /usr/share/elasticsearch/bin:$PATH
17-
ENV JAVA_HOME /opt/jdk-12.0.1
17+
ENV JAVA_HOME /opt/jdk-12.0.2
1818

19-
RUN curl --retry 8 -s https://download.oracle.com/java/GA/jdk12.0.1/69cfe15208a647278a19ef0990eea691/12/GPL/openjdk-12.0.1_linux-x64_bin.tar.gz | tar -C /opt -zxf -
19+
RUN curl --retry 8 -s https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_linux-x64_bin.tar.gz | tar -C /opt -zxf -
2020

2121
# Replace OpenJDK's built-in CA certificate keystore with the one from the OS
2222
# vendor. The latter is superior in several ways.
2323
# REF: https://github.com/elastic/elasticsearch-docker/issues/171
24-
RUN ln -sf /etc/pki/ca-trust/extracted/java/cacerts /opt/jdk-12.0.1/lib/security/cacerts
24+
RUN ln -sf /etc/pki/ca-trust/extracted/java/cacerts /opt/jdk-12.0.2/lib/security/cacerts
2525

2626
RUN yum install -y unzip which
2727

@@ -30,9 +30,9 @@ RUN groupadd -g 1000 elasticsearch && \
3030

3131
WORKDIR /usr/share/elasticsearch
3232

33-
RUN cd /opt && curl --retry 8 -s -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.8.2.tar.gz && cd -
33+
RUN cd /opt && curl --retry 8 -s -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.8.3.tar.gz && cd -
3434

35-
RUN tar zxf /opt/elasticsearch-6.8.2.tar.gz --strip-components=1
35+
RUN tar zxf /opt/elasticsearch-6.8.3.tar.gz --strip-components=1
3636
RUN grep ES_DISTRIBUTION_TYPE=tar /usr/share/elasticsearch/bin/elasticsearch-env \
3737
&& sed -ie 's/ES_DISTRIBUTION_TYPE=tar/ES_DISTRIBUTION_TYPE=docker/' /usr/share/elasticsearch/bin/elasticsearch-env
3838
RUN mkdir -p config data logs
@@ -48,9 +48,9 @@ COPY config/elasticsearch.yml config/log4j2.properties config/
4848
FROM centos:7
4949

5050
ENV ELASTIC_CONTAINER true
51-
ENV JAVA_HOME /opt/jdk-12.0.1
51+
ENV JAVA_HOME /opt/jdk-12.0.2
5252

53-
COPY --from=builder /opt/jdk-12.0.1 /opt/jdk-12.0.1
53+
COPY --from=builder /opt/jdk-12.0.2 /opt/jdk-12.0.2
5454

5555
RUN for iter in {1..10}; do yum update -y && \
5656
yum install -y nc unzip wget which && \
@@ -76,13 +76,25 @@ RUN chgrp 0 /usr/local/bin/docker-entrypoint.sh && \
7676

7777
EXPOSE 9200 9300
7878

79-
LABEL org.label-schema.schema-version="1.0" \
80-
org.label-schema.vendor="Elastic" \
81-
org.label-schema.name="elasticsearch" \
82-
org.label-schema.version="6.8.2" \
79+
LABEL org.label-schema.build-date="2019-08-29T19:05:24.312154Z" \
80+
org.label-schema.license="Elastic-License" \
81+
org.label-schema.name="Elasticsearch" \
82+
org.label-schema.schema-version="1.0" \
8383
org.label-schema.url="https://www.elastic.co/products/elasticsearch" \
84+
org.label-schema.usage="https://www.elastic.co/guide/en/elasticsearch/reference/index.html" \
85+
org.label-schema.vcs-ref="0c48c0e73be564f3a8a286b2165d50de2fbbb661" \
8486
org.label-schema.vcs-url="https://github.com/elastic/elasticsearch" \
85-
license="Elastic License"
87+
org.label-schema.vendor="Elastic" \
88+
org.label-schema.version="6.8.3" \
89+
org.opencontainers.image.created="2019-08-29T19:05:24.312154Z" \
90+
org.opencontainers.image.documentation="https://www.elastic.co/guide/en/elasticsearch/reference/index.html" \
91+
org.opencontainers.image.licenses="Elastic-License" \
92+
org.opencontainers.image.revision="0c48c0e73be564f3a8a286b2165d50de2fbbb661" \
93+
org.opencontainers.image.source="https://github.com/elastic/elasticsearch" \
94+
org.opencontainers.image.title="Elasticsearch" \
95+
org.opencontainers.image.url="https://www.elastic.co/products/elasticsearch" \
96+
org.opencontainers.image.vendor="Elastic" \
97+
org.opencontainers.image.version="6.8.3"
8698

8799
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
88100
# Dummy overridable parameter parsed by entrypoint

kibana/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
# Extract Kibana and make various file manipulations.
88
################################################################################
99
FROM centos:7 AS prep_files
10-
RUN cd /opt && curl --retry 8 -s -L -O https://artifacts.elastic.co/downloads/kibana/kibana-6.8.2-linux-x86_64.tar.gz && cd -
10+
RUN cd /opt && curl --retry 8 -s -L -O https://artifacts.elastic.co/downloads/kibana/kibana-6.8.3-linux-x86_64.tar.gz && cd -
1111
RUN mkdir /usr/share/kibana
1212
WORKDIR /usr/share/kibana
13-
RUN tar --strip-components=1 -zxf /opt/kibana-6.8.2-linux-x86_64.tar.gz
13+
RUN tar --strip-components=1 -zxf /opt/kibana-6.8.3-linux-x86_64.tar.gz
1414
# Ensure that group permissions are the same as user permissions.
1515
# This will help when relying on GID-0 to run Kibana, rather than UID-1000.
1616
# OpenShift does this, for example.
@@ -50,6 +50,6 @@ RUN chmod g+ws /usr/share/kibana && find /usr/share/kibana -gid 0 -and -not -per
5050
RUN groupadd --gid 1000 kibana && useradd --uid 1000 --gid 1000 --home-dir /usr/share/kibana --no-create-home kibana
5151
USER kibana
5252

53-
LABEL org.label-schema.schema-version="1.0" org.label-schema.vendor="Elastic" org.label-schema.name="kibana" org.label-schema.version="6.8.2" org.label-schema.url="https://www.elastic.co/products/kibana" org.label-schema.vcs-url="https://github.com/elastic/kibana" license="Elastic License"
53+
LABEL org.label-schema.schema-version="1.0" org.label-schema.vendor="Elastic" org.label-schema.name="kibana" org.label-schema.version="6.8.3" org.label-schema.url="https://www.elastic.co/products/kibana" org.label-schema.vcs-url="https://github.com/elastic/kibana" org.label-schema.license="Elastic License" license="Elastic License"
5454

5555
CMD ["/usr/local/bin/kibana-docker"]

logstash/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ RUN groupadd --gid 1000 logstash && \
1313
logstash
1414

1515
# Add Logstash itself.
16-
RUN curl -Lo - https://artifacts.elastic.co/downloads/logstash/logstash-6.8.2.tar.gz | \
16+
RUN curl -Lo - https://artifacts.elastic.co/downloads/logstash/logstash-6.8.3.tar.gz | \
1717
tar zxf - -C /usr/share && \
18-
mv /usr/share/logstash-6.8.2 /usr/share/logstash && \
18+
mv /usr/share/logstash-6.8.3 /usr/share/logstash && \
1919
chown --recursive logstash:logstash /usr/share/logstash/ && \
2020
chown -R logstash:root /usr/share/logstash && \
2121
chmod -R g=u /usr/share/logstash && \
@@ -52,7 +52,7 @@ EXPOSE 9600 5044
5252
LABEL org.label-schema.schema-version="1.0" \
5353
org.label-schema.vendor="Elastic" \
5454
org.label-schema.name="logstash" \
55-
org.label-schema.version="6.8.2" \
55+
org.label-schema.version="6.8.3" \
5656
org.label-schema.url="https://www.elastic.co/products/logstash" \
5757
org.label-schema.vcs-url="https://github.com/elastic/logstash" \
5858
license="Elastic License"

0 commit comments

Comments
 (0)