Namespace
hyperledger
Image / Tag
besu:20.10.0-RC3-SNAPSHOT-openjdk-latest
Content Digest
sha256:e184fa1484f40adedb765b24207272808551978c3a16af361fe806f0715d78a3
Details
Created

2020-11-02 15:52:07 UTC

Size

327 MB

Content Digest
Labels
  • org.label-schema.build-date
    2020-11-02T15:51Z
  • org.label-schema.description
    Enterprise Ethereum client
  • org.label-schema.name
    Besu
  • org.label-schema.schema-version
    1.0
  • org.label-schema.url
    https://besu.hyperledger.org/
  • org.label-schema.vcs-ref
    2c421594
  • org.label-schema.vcs-url
    https://github.com/hyperledger/besu.git
  • org.label-schema.vendor
    Hyperledger
  • org.label-schema.version
    20.10.0-RC3-SNAPSHOT

Environment
BESU_GRAPHQL_HTTP_HOST

0.0.0.0

BESU_PID_PATH

/tmp/pid

BESU_RPC_HTTP_HOST

0.0.0.0

BESU_RPC_WS_HOST

0.0.0.0

JAVA_HOME

/usr/local/openjdk-15

JAVA_VERSION

15.0.1

LANG

C.UTF-8

OTEL_EXPORTER

otlp

OTEL_OTLP_ENDPOINT

0.0.0.0:55680

OTEL_RESOURCE_ATTRIBUTES

service.name=besu-

PATH

/opt/besu/bin:/usr/local/openjdk-15/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:bb79b6b2107fea8e8a47133a660b78e3a546998fcf0427be39ac9a0af4a97e90 - 7.9% (25.8 MB)

[#001] sha256:00028440d132be6f9dd59a787bc5d1372d575a539c19954651757f12912f2e65 - 0.95% (3.1 MB)

[#002] sha256:001e2b484146cddf02fbfcb7fa77c66058e8db8b8ee9244b1f1f4ab2874036e4 - 0.0% (211 Bytes)

[#003] sha256:adebfafbec14154a47620d07969254907125eeb5407b4f320b26060e890f9977 - 57.22% (187 MB)

[#004] sha256:3f3a568dd5307cb9ebac7a3ee4720250036f3b5c2c06f056842a157d0ba5288f - 0.0% (4.02 KB)

[#005] sha256:a474b21217178708a5eb7a260d152e30b0c50c9c31860d7481f5ff53a7434783 - 33.92% (111 MB)


History
2020-10-13 01:39:05 UTC

/bin/sh -c #(nop) ADD file:0dc53e7886c35bc21ae6c4f6cedda54d56ae9c9e9cd367678f1a72e68b3c43d4 in /

2020-10-13 01:39:05 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-10-13 08:58:53 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates p11-kit ; rm -rf /var/lib/apt/lists/*

2020-10-13 08:58:53 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2020-10-13 09:00:21 UTC

/bin/sh -c #(nop) ENV JAVA_HOME=/usr/local/openjdk-15

2020-10-13 09:00:21 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/openjdk-15/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2020-10-13 09:00:22 UTC

/bin/sh -c { echo '#/bin/sh'; echo 'echo "$JAVA_HOME"'; } > /usr/local/bin/docker-java-home && chmod +x /usr/local/bin/docker-java-home && [ "$JAVA_HOME" = "$(docker-java-home)" ]

2020-10-20 22:33:08 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=15.0.1

2020-10-20 22:33:35 UTC

/bin/sh -c set -eux; arch="$(dpkg --print-architecture)"; case "$arch" in arm64 | aarch64) downloadUrl=https://download.java.net/java/GA/jdk15.0.1/51f4f36ad4ef43e39d0dfdbaf6549e32/9/GPL/openjdk-15.0.1_linux-aarch64_bin.tar.gz; downloadSha256=6a62b7ec065280bad978a3322733a089153dec5ebf5ba81fd2fa361382dbc7b0; ;; amd64 | i386:x86-64) downloadUrl=https://download.java.net/java/GA/jdk15.0.1/51f4f36ad4ef43e39d0dfdbaf6549e32/9/GPL/openjdk-15.0.1_linux-x64_bin.tar.gz; downloadSha256=83ec3a7b1649a6b31e021cde1e58ab447b07fb8173489f27f427e731c89ed84a; ;; *) echo >&2 "error: unsupported architecture: '$arch'"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget ; rm -rf /var/lib/apt/lists/*; wget -O openjdk.tgz "$downloadUrl" --progress=dot:giga; echo "$downloadSha256 *openjdk.tgz" | sha256sum --strict --check -; mkdir -p "$JAVA_HOME"; tar --extract --file openjdk.tgz --directory "$JAVA_HOME" --strip-components 1 --no-same-owner ; rm openjdk.tgz; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; { echo '#!/usr/bin/env bash'; echo 'set -Eeuo pipefail'; echo 'if ! [ -d "$JAVA_HOME" ]; then echo >&2 "error: missing JAVA_HOME environment variable"; exit 1; fi'; echo 'cacertsFile=; for f in "$JAVA_HOME/lib/security/cacerts" "$JAVA_HOME/jre/lib/security/cacerts"; do if [ -e "$f" ]; then cacertsFile="$f"; break; fi; done'; echo 'if [ -z "$cacertsFile" ] || ! [ -f "$cacertsFile" ]; then echo >&2 "error: failed to find cacerts file in $JAVA_HOME"; exit 1; fi'; echo 'trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose=server-auth "$cacertsFile"'; } > /etc/ca-certificates/update.d/docker-openjdk; chmod +x /etc/ca-certificates/update.d/docker-openjdk; /etc/ca-certificates/update.d/docker-openjdk; find "$JAVA_HOME/lib" -name '*.so' -exec dirname '{}' ';' | sort -u > /etc/ld.so.conf.d/docker-openjdk.conf; ldconfig; java -Xshare:dump; fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java; javac --version; java --version

2020-10-20 22:33:35 UTC

/bin/sh -c #(nop) CMD ["jshell"]

2020-11-02 15:52:02 UTC

/bin/sh -c adduser --disabled-password --gecos "" --home /opt/besu besu && chown besu:besu /opt/besu

2020-11-02 15:52:02 UTC

/bin/sh -c #(nop) USER [besu]

2020-11-02 15:52:02 UTC

/bin/sh -c #(nop) WORKDIR /opt/besu

2020-11-02 15:52:03 UTC

/bin/sh -c #(nop) COPY --chown=besu:besudir:cf9e5882af03e18690377e5c1e97279bf9da1e6b59b695be54234237e0ce7d3e in /opt/besu/

2020-11-02 15:52:04 UTC

/bin/sh -c #(nop) EXPOSE 30303/tcp 8545/tcp 8546/tcp 8547/tcp

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV BESU_RPC_HTTP_HOST=0.0.0.0

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV BESU_RPC_WS_HOST=0.0.0.0

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV BESU_GRAPHQL_HTTP_HOST=0.0.0.0

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV BESU_PID_PATH=/tmp/pid

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV OTEL_EXPORTER=otlp

2020-11-02 15:52:05 UTC

/bin/sh -c #(nop) ENV OTEL_OTLP_ENDPOINT=0.0.0.0:55680

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) ENV OTEL_RESOURCE_ATTRIBUTES=service.name=besu-

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) ENV PATH=/opt/besu/bin:/usr/local/openjdk-15/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) ENTRYPOINT ["besu"]

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) HEALTHCHECK &{["CMD-SHELL" "bash -c \"[ -f /tmp/pid ]\""] "5s" "1s" "5s" '\n'}

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) ARG BUILD_DATE

2020-11-02 15:52:06 UTC

/bin/sh -c #(nop) ARG VCS_REF

2020-11-02 15:52:07 UTC

/bin/sh -c #(nop) ARG VERSION

2020-11-02 15:52:07 UTC

/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-11-02T15:51Z org.label-schema.name=Besu org.label-schema.description=Enterprise Ethereum client org.label-schema.url=https://besu.hyperledger.org/ org.label-schema.vcs-ref=2c421594 org.label-schema.vcs-url=https://github.com/hyperledger/besu.git org.label-schema.vendor=Hyperledger org.label-schema.version=20.10.0-RC3-SNAPSHOT org.label-schema.schema-version=1.0

Danger Zone
Delete Tag

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.

Delete