Namespace
hyperledger
Image / Tag
besu:1.5.4-openjdk-latest
Content Digest
sha256:70c2821ca1c73e57671d52ca3c04fb5e14dd0f535df246eb85baecae5e1c87af
Details
Created

2020-09-09 17:42:44 UTC

Size

305 MB

Content Digest
Labels
  • org.label-schema.build-date
    2020-09-09T17:42Z
  • 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
    1b7b8549
  • org.label-schema.vcs-url
    https://github.com/hyperledger/besu.git
  • org.label-schema.vendor
    Hyperledger
  • org.label-schema.version
    1.5.4

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-14

JAVA_VERSION

14.0.2

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:bf59529304463f62efa7179fa1a32718a611528cc4ce9f30c0d1bbc6724ec3fb - 8.46% (25.8 MB)

[#001] sha256:092c9b8e633fd73a2b448815d56f09aebf34c733300cd7747008b81fe7724a02 - 1.01% (3.1 MB)

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

[#003] sha256:1bb778f76db35302bb48fef9517abc09b6ff8ad7f6985f482b2ccbfa48c6e800 - 62.31% (190 MB)

[#004] sha256:5f69b852ab14aa5eaeff09e59fe5071827a8ecadd852ae1bb4f5bc53203572e1 - 0.0% (4.02 KB)

[#005] sha256:73ddf7e7791368c54805b821f44c84dfc144824ccf013500b1193dc5adca9112 - 28.21% (86.1 MB)


History
2020-08-04 15:42:51 UTC

/bin/sh -c #(nop) ADD file:3af3091e7d2bb40bc1e6550eb5ea290badc6bbf3339105626f245a963cc11450 in /

2020-08-04 15:42:51 UTC

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

2020-08-05 00:41:10 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-08-05 00:41:10 UTC

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

2020-08-05 00:43:56 UTC

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

2020-08-05 00:43:57 UTC

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

2020-08-05 00:43:57 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-08-05 00:43:58 UTC

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

2020-09-01 01:49:24 UTC

/bin/sh -c set -eux; arch="$(dpkg --print-architecture)"; case "$arch" in amd64 | i386:x86-64) downloadUrl=https://download.java.net/java/GA/jdk14.0.2/205943a0976c4ed48cb16f1043c5c647/12/GPL/openjdk-14.0.2_linux-x64_bin.tar.gz; downloadSha256=91310200f072045dc6cef2c8c23e7e6387b37c46e9de49623ce0fa461a24623d; ;; *) 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-09-01 01:49:24 UTC

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

2020-09-09 17:42:40 UTC

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

2020-09-09 17:42:40 UTC

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

2020-09-09 17:42:41 UTC

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

2020-09-09 17:42:42 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:43 UTC

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

2020-09-09 17:42:44 UTC

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

2020-09-09 17:42:44 UTC

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

2020-09-09 17:42:44 UTC

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

2020-09-09 17:42:44 UTC

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

2020-09-09 17:42:44 UTC

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

2020-09-09 17:42:44 UTC

/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-09-09T17:42Z 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=1b7b8549 org.label-schema.vcs-url=https://github.com/hyperledger/besu.git org.label-schema.vendor=Hyperledger org.label-schema.version=1.5.4 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