Namespace
hyperledger
Image / Tag
besu:20.10.4-SNAPSHOT-openjdk-latest
Content Digest
sha256:fb3f7763e2ecffa5ad803ce24de6a3f7bcbf28d8d20f7feaead43a77d76184e4
Details
Created

2021-01-13 06:16:02 UTC

Size

319 MB

Content Digest
Labels
  • org.label-schema.build-date
    2021-01-13T06:15Z
  • 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
    fb9dfea8
  • org.label-schema.vcs-url
    https://github.com/hyperledger/besu.git
  • org.label-schema.vendor
    Hyperledger
  • org.label-schema.version
    20.10.4-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_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:a076a628af6f7dcabc536bee373c0d9b48d9f0516788e64080c4e841746e6ce6 - 8.11% (25.9 MB)

[#001] sha256:943d8acaac04a2b66af03bcc85abe1cd3f50e06d7e193634e04d4e55c4fc7cc8 - 0.97% (3.1 MB)

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

[#003] sha256:70adf69f6d8973d706f851faf4cc7148f279591d0d2807aad11727adb2dffe9f - 58.69% (187 MB)

[#004] sha256:f0f4535f403ac3690e54a0ec9a599aa91a4babc2199d2238b1fdbb7b3050b0a3 - 0.0% (4.01 KB)

[#005] sha256:4226c8fb7233bc998ef6efb95e3f06bcded1eddea690b6847e1080029c5674ac - 32.23% (103 MB)


History
2021-01-12 00:32:51 UTC

/bin/sh -c #(nop) ADD file:422aca8901ae3d869a815051cea7f1e4c0204fad16884e7cd01da57d142f2e3a in /

2021-01-12 00:32:51 UTC

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

2021-01-12 10:53:01 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/*

2021-01-12 10:53:01 UTC

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

2021-01-12 10:56:03 UTC

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

2021-01-12 10:56:04 UTC

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

2021-01-12 10:56:05 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)" ]

2021-01-12 10:56:06 UTC

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

2021-01-12 10:56:37 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

2021-01-12 10:56:37 UTC

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

2021-01-13 06:15:57 UTC

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

2021-01-13 06:15:57 UTC

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

2021-01-13 06:15:57 UTC

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

2021-01-13 06:15:59 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:00 UTC

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

2021-01-13 06:16:01 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

2021-01-13 06:16:01 UTC

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

2021-01-13 06:16:01 UTC

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

2021-01-13 06:16:01 UTC

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

2021-01-13 06:16:01 UTC

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

2021-01-13 06:16:01 UTC

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

2021-01-13 06:16:02 UTC

/bin/sh -c #(nop) LABEL org.label-schema.build-date=2021-01-13T06:15Z 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=fb9dfea8 org.label-schema.vcs-url=https://github.com/hyperledger/besu.git org.label-schema.vendor=Hyperledger org.label-schema.version=20.10.4-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