2017-04-04 23:28:29 UTC
80.6 MB
https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.4.tar.gz
ELASTICSEARCH_TARBALL_ASChttps://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.4.tar.gz.asc
ELASTICSEARCH_TARBALL_SHA1cdb5068d1baa07388e522c3bc04cca38aa8f3048
ELASTICSEARCH_VERSION2.4.4
GPG_KEY46095ACC8548582C1A2699A9D27D666CD88E42B4
JAVA_ALPINE_VERSION8.121.13-r0
JAVA_HOME/usr/lib/jvm/java-1.8-openjdk/jre
JAVA_VERSION8u121
LANGC.UTF-8
PATH/usr/share/elasticsearch/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
[#000] sha256:627beaf3eaaff1c0bc3311d60fb933c17ad04fe377e1043d9593646d8ae3bfe1 - 2.25% (1.82 MB)
[#001] sha256:1de20f2d8b839756d5fc0ae6871096666a822b6b4205e11e9cf438a2263f3281 - 0.0% (232 Bytes)
[#002] sha256:74e619d348278f1e8660192734bff496a6c3e05aab6bef025e843e7413a7c9e3 - 63.65% (51.3 MB)
[#003] sha256:2cc52efe90d3e45b685f2f90da7c649be6fdf27398cc80683e15ba3429d43ccb - 0.0% (1.22 KB)
[#004] sha256:9f8e5d874dc8370932df2932dc75e9205ff40b46c0552cb687518b3358aa9342 - 1.3% (1.04 MB)
[#005] sha256:00fad975b2fa0db6655766653becb8473f65005f574bea44f65fda8c151632d8 - 0.0% (140 Bytes)
[#006] sha256:ec139333edc68d9b11d61a8ddda82946f7633161cd12c7a18a8c49d5bea9ece1 - 32.8% (26.4 MB)
[#007] sha256:a6005dd5187a9894a3d818b8f31155cecdc4896fe613902415dc61f1f11529b4 - 0.0% (540 Bytes)
[#008] sha256:5a1e01a909c3bbd7701df72a5967cc9796bd8c47a4c231bfdfc016cadc14d810 - 0.0% (510 Bytes)
/bin/sh -c #(nop) ADD file:730030a984f5f0c5dc9b15ab61da161082b5c0f6e112a9c921b42321140c3927 in /
2017-03-07 01:03:58 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2017-03-07 01:03:59 UTC/bin/sh -c { echo '#!/bin/sh'; echo 'set -e'; echo; echo 'dirname "$(dirname "$(readlink -f "$(which javac || which java)")")"'; } > /usr/local/bin/docker-java-home && chmod +x /usr/local/bin/docker-java-home
2017-03-07 01:04:09 UTC/bin/sh -c #(nop) ENV JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/jre
2017-03-07 01:04:09 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
2017-03-07 01:04:10 UTC/bin/sh -c #(nop) ENV JAVA_VERSION=8u121
2017-03-07 01:04:10 UTC/bin/sh -c #(nop) ENV JAVA_ALPINE_VERSION=8.121.13-r0
2017-03-07 01:04:15 UTC/bin/sh -c set -x && apk add --no-cache openjdk8-jre="$JAVA_ALPINE_VERSION" && [ "$JAVA_HOME" = "$(docker-java-home)" ]
2017-03-07 17:46:13 UTC/bin/sh -c addgroup -S elasticsearch && adduser -S -G elasticsearch elasticsearch
2017-03-07 17:46:16 UTC/bin/sh -c apk add --no-cache 'su-exec>=0.2' bash
2017-03-07 17:46:32 UTC/bin/sh -c #(nop) ENV GPG_KEY=46095ACC8548582C1A2699A9D27D666CD88E42B4
2017-03-07 17:46:32 UTC/bin/sh -c #(nop) WORKDIR /usr/share/elasticsearch
2017-03-07 17:46:33 UTC/bin/sh -c #(nop) ENV PATH=/usr/share/elasticsearch/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
2017-03-07 17:47:00 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_VERSION=2.4.4
2017-03-07 17:47:01 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_TARBALL=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.4.tar.gz ELASTICSEARCH_TARBALL_ASC=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.4.tar.gz.asc ELASTICSEARCH_TARBALL_SHA1=cdb5068d1baa07388e522c3bc04cca38aa8f3048
2017-04-04 23:28:26 UTC/bin/sh -c set -ex; apk add --no-cache --virtual .fetch-deps ca-certificates gnupg openssl tar ; wget -O elasticsearch.tar.gz "$ELASTICSEARCH_TARBALL"; if [ "$ELASTICSEARCH_TARBALL_SHA1" ]; then echo "$ELASTICSEARCH_TARBALL_SHA1 *elasticsearch.tar.gz" | sha1sum -c -; fi; if [ "$ELASTICSEARCH_TARBALL_ASC" ]; then wget -O elasticsearch.tar.gz.asc "$ELASTICSEARCH_TARBALL_ASC"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY"; gpg --batch --verify elasticsearch.tar.gz.asc elasticsearch.tar.gz; rm -r "$GNUPGHOME" elasticsearch.tar.gz.asc; fi; tar -xf elasticsearch.tar.gz --strip-components=1; rm elasticsearch.tar.gz; apk del .fetch-deps; mkdir -p ./plugins; for path in ./data ./logs ./config ./config/scripts ; do mkdir -p "$path"; chown -R elasticsearch:elasticsearch "$path"; done; export ES_JAVA_OPTS='-Xms32m -Xmx32m'; if [ "${ELASTICSEARCH_VERSION%%.*}" -gt 1 ]; then elasticsearch --version; else elasticsearch -v; fi
2017-04-04 23:28:27 UTC/bin/sh -c #(nop) COPY dir:5ec5fadebeaa388fd27b7738b6b8d6306c5b8b7d9ef468d45d3efa4b858b338f in ./config
2017-04-04 23:28:27 UTC/bin/sh -c #(nop) VOLUME [/usr/share/elasticsearch/data]
2017-04-04 23:28:28 UTC/bin/sh -c #(nop) COPY file:2c17a92e4308bdce9fe8a119d9cc5794f0aff8c512a55882b834e2e8404b0112 in /
2017-04-04 23:28:28 UTC/bin/sh -c #(nop) EXPOSE 9200/tcp 9300/tcp
2017-04-04 23:28:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2017-04-04 23:28:29 UTC/bin/sh -c #(nop) CMD ["elasticsearch"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.