2017-05-11 00:27:18 UTC
82.3 MB
https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.6.tar.gz
ELASTICSEARCH_TARBALL_ASC ELASTICSEARCH_TARBALL_SHA10b6ec9fe34b29e6adc4d8481630bf1f69cb04aa9
ELASTICSEARCH_VERSION1.7.6
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:cfc728c1c5584d8e0ae69368fc9c34d54d72651355573ba42554c2469a0a6299 - 2.28% (1.88 MB)
[#001] sha256:5b12b87f0a0e1bc0a163558cc56861b86355598153fb9e35273ece1dabe81cae - 0.0% (231 Bytes)
[#002] sha256:2361cda3c2da7cd65965703a6e97c9869536495a962105e26c948dd9a806e80d - 62.87% (51.7 MB)
[#003] sha256:7ed8bdf6a3840e46defdb5244431cc24d75f206059d8b8c909e1a7e0573d077f - 0.0% (1.23 KB)
[#004] sha256:ca8a601693bd7e0b36ce2ca9eca8f899a784fdef4d1ad453b69990099cb44fef - 1.3% (1.07 MB)
[#005] sha256:fa6e5c46f2266a5621e489993e3e0dd2d3936510356bec0d373557a06fea03f0 - 0.0% (138 Bytes)
[#006] sha256:dca336ef21aec5130a2f83761a51656cc46b1fa51e381fcbb5453d202a0f1385 - 33.54% (27.6 MB)
[#007] sha256:f2e8999e9a37ef27bd1fdbe7c93dc6f8cdf37eccc357f6660bde5b170a0cb0cc - 0.0% (496 Bytes)
[#008] sha256:bd5faf43dd0fbaa68d5a82f96d19e28a213f943821e91bdad1bfb9f2c6b4158e - 0.0% (508 Bytes)
/bin/sh -c #(nop) ADD file:63f63606d6e289eb607c90e31de81802258906712727e473a2898f0f1ae55bb5 in /
2017-05-10 16:38:17 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2017-05-10 22:39:51 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2017-05-10 22:39:53 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-05-10 22:40:21 UTC/bin/sh -c #(nop) ENV JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/jre
2017-05-10 22:40:22 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-05-10 22:40:22 UTC/bin/sh -c #(nop) ENV JAVA_VERSION=8u121
2017-05-10 22:40:23 UTC/bin/sh -c #(nop) ENV JAVA_ALPINE_VERSION=8.121.13-r0
2017-05-10 22:40:28 UTC/bin/sh -c set -x && apk add --no-cache openjdk8-jre="$JAVA_ALPINE_VERSION" && [ "$JAVA_HOME" = "$(docker-java-home)" ]
2017-05-11 00:26:58 UTC/bin/sh -c addgroup -S elasticsearch && adduser -S -G elasticsearch elasticsearch
2017-05-11 00:27:01 UTC/bin/sh -c apk add --no-cache 'su-exec>=0.2' bash
2017-05-11 00:27:02 UTC/bin/sh -c #(nop) ENV GPG_KEY=46095ACC8548582C1A2699A9D27D666CD88E42B4
2017-05-11 00:27:03 UTC/bin/sh -c #(nop) WORKDIR /usr/share/elasticsearch
2017-05-11 00:27:03 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-05-11 00:27:04 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_VERSION=1.7.6
2017-05-11 00:27:05 UTC/bin/sh -c #(nop) ENV ELASTICSEARCH_TARBALL=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.6.tar.gz ELASTICSEARCH_TARBALL_ASC= ELASTICSEARCH_TARBALL_SHA1=0b6ec9fe34b29e6adc4d8481630bf1f69cb04aa9
2017-05-11 00:27:13 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-05-11 00:27:14 UTC/bin/sh -c #(nop) COPY dir:31f8476cce13d884e30d94ee9384cd924f19b02a6833943b9d501f833cd60885 in ./config
2017-05-11 00:27:15 UTC/bin/sh -c #(nop) VOLUME [/usr/share/elasticsearch/data]
2017-05-11 00:27:16 UTC/bin/sh -c #(nop) COPY file:2c17a92e4308bdce9fe8a119d9cc5794f0aff8c512a55882b834e2e8404b0112 in /
2017-05-11 00:27:17 UTC/bin/sh -c #(nop) EXPOSE 9200/tcp 9300/tcp
2017-05-11 00:27:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2017-05-11 00:27:18 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.