2016-12-27 22:15:00 UTC
67.5 MB
https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.3.tar.gz
ELASTICSEARCH_TARBALL_ASChttps://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.3.tar.gz.asc
ELASTICSEARCH_TARBALL_SHA17f415b3598315c017b0733f50cd47aa837886a7f
ELASTICSEARCH_VERSION2.4.3
GPG_KEY46095ACC8548582C1A2699A9D27D666CD88E42B4
JAVA_ALPINE_VERSION8.111.14-r0
JAVA_HOME/usr/lib/jvm/java-1.8-openjdk/jre
JAVA_VERSION8u111
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:b7f33cc0b48ea4fb2f0745def58c25483a5f6b7aed5b41ce8f1cb6e17f5723cf - 3.27% (2.21 MB)
[#001] sha256:43a564ae36a32a4575a2cc6de78b6d1b7ce5c581bca7b875d789e026198c1d55 - 0.0% (231 Bytes)
[#002] sha256:efb75a810eee14e75bc372b510c025740f57b5eddae56f87dd85f0f9ef531c9f - 56.03% (37.8 MB)
[#003] sha256:9bd80bfc6ba60414141d53d7a6672a8b4e14a1fe95767eb46d0630cbe00709d8 - 0.0% (1.25 KB)
[#004] sha256:8545e0091c1aa923754cbedb6f83ff90f310b5b89a6096b119a984f161c30016 - 1.55% (1.05 MB)
[#005] sha256:3ae93bce2c179e6cc38e9d668c69cc0c7f22163dd01c453f0f50dc3af2cccb40 - 0.0% (139 Bytes)
[#006] sha256:0fc4bc7dcdba587259ab5c474cb00480b0e7823aa6f97ed31aad01ae5eadcd1e - 39.15% (26.4 MB)
[#007] sha256:d2ecc7e8ca188d42507708bd962b7a6563a36cfdbe36dd7d301a93eee36d849a - 0.0% (539 Bytes)
[#008] sha256:6e9f2226fc63fe693a0a5bef4efc9574da41ada05d8bd8c1eb454c67f85b0314 - 0.0% (510 Bytes)
/bin/sh -c #(nop) ADD file:eeed5f514a35d18fcd9cbfe6c40c582211020bffdd53e4799018d33826fe5067 in /
2016-12-27 18:37:54 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2016-12-27 18:37:55 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
2016-12-27 18:38:43 UTC/bin/sh -c #(nop) ENV JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/jre
2016-12-27 18:38:44 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
2016-12-27 18:38:44 UTC/bin/sh -c #(nop) ENV JAVA_VERSION=8u111
2016-12-27 18:38:45 UTC/bin/sh -c #(nop) ENV JAVA_ALPINE_VERSION=8.111.14-r0
2016-12-27 18:38:49 UTC/bin/sh -c set -x && apk add --no-cache openjdk8-jre="$JAVA_ALPINE_VERSION" && [ "$JAVA_HOME" = "$(docker-java-home)" ]
2016-12-27 22:14:28 UTC/bin/sh -c addgroup -S elasticsearch && adduser -S -G elasticsearch elasticsearch
2016-12-27 22:14:31 UTC/bin/sh -c apk add --no-cache 'su-exec>=0.2' bash
2016-12-27 22:14:31 UTC/bin/sh -c #(nop) ENV GPG_KEY=46095ACC8548582C1A2699A9D27D666CD88E42B4
2016-12-27 22:14:32 UTC/bin/sh -c #(nop) WORKDIR /usr/share/elasticsearch
2016-12-27 22:14:32 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
2016-12-27 22:14:45 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_VERSION=2.4.3
2016-12-27 22:14:46 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_TARBALL=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.3.tar.gz ELASTICSEARCH_TARBALL_ASC=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.4.3.tar.gz.asc ELASTICSEARCH_TARBALL_SHA1=7f415b3598315c017b0733f50cd47aa837886a7f
2016-12-27 22:14:56 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; if [ "${ELASTICSEARCH_VERSION%%.*}" -gt 1 ]; then elasticsearch --version; else elasticsearch -v; fi
2016-12-27 22:14:57 UTC/bin/sh -c #(nop) COPY dir:5ec5fadebeaa388fd27b7738b6b8d6306c5b8b7d9ef468d45d3efa4b858b338f in ./config
2016-12-27 22:14:58 UTC/bin/sh -c #(nop) VOLUME [/usr/share/elasticsearch/data]
2016-12-27 22:14:59 UTC/bin/sh -c #(nop) COPY file:2c17a92e4308bdce9fe8a119d9cc5794f0aff8c512a55882b834e2e8404b0112 in /
2016-12-27 22:14:59 UTC/bin/sh -c #(nop) EXPOSE 9200/tcp 9300/tcp
2016-12-27 22:15:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2016-12-27 22:15:00 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.