Namespace
adoptopenjdk
Image / Tag
openjdk11:x86_64-ubi-jdk-11.0.10_9
Content Digest
sha256:645b2951f55439bd7b4a6cb2bd53d10af7ffd7befa0b5dc3642c44c898da93cd
Details
Created

2021-04-21 12:02:21 UTC

Size

268 MB

Content Digest
Labels
  • architecture
    x86_64
  • build-date
    2021-04-14T20:57:57.866314
  • com.redhat.build-host
    cpt-1005.osbs.prod.upshift.rdu2.redhat.com
  • com.redhat.component
    ubi8-container
  • com.redhat.license_terms
    https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI
  • description
    For more information on this image please see https://github.com/AdoptOpenJDK/openjdk-docker/blob/master/README.md
  • distribution-scope
    public
  • io.k8s.description
    The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.
  • io.k8s.display-name
    Red Hat Universal Base Image 8
  • io.openshift.expose-services
  • io.openshift.tags
    base rhel8
  • maintainer
    Red Hat, Inc.
  • name
    AdoptOpenJDK Java
  • release
    11
  • run
    docker run --rm -ti <image_name:tag> /bin/bash
  • summary
    AdoptOpenJDK Docker Image for OpenJDK with hotspot and ubi
  • url
    https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.3-297.1618432833
  • vcs-ref
    7dd0869dabeebe7119fc04b16767c5991bcaa865
  • vcs-type
    git
  • vendor
    AdoptOpenJDK
  • version
    jdk-11.0.10+9

Environment
JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk-11.0.10+9

LANG

en_US.UTF-8

LANGUAGE

en_US:en

LC_ALL

en_US.UTF-8

PATH

/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

container

oci


Layers

[#000] sha256:4b21dcdd136d133a4df0840e656af2f488c226dd384a98b89ced79064a4081b4 - 26.89% (72.1 MB)

[#001] sha256:55eda774346862e410811e3fa91cefe805bc11ff46fad425dd1b712709c05bbc - 0.0% (1.75 KB)

[#002] sha256:a8be7db62c6e1dae856a39b3d61455742fa63a8686b18282f60a3bee8878dea6 - 3.72% (9.96 MB)

[#003] sha256:ae561c2447121f1decc89bdbd807b20a579fe6302f9bbb1825dab574087e922d - 69.39% (186 MB)


History
2021-04-14 20:58:10 UTC (Imported from -)

2021-04-14 20:58:21 UTC

2021-04-21 12:01:39 UTC

/bin/sh -c #(nop) ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8

2021-04-21 12:01:51 UTC

/bin/sh -c dnf install -y tzdata openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar && dnf update -y; dnf clean all

2021-04-21 12:01:52 UTC

/bin/sh -c #(nop) LABEL name=AdoptOpenJDK Java vendor=AdoptOpenJDK version=jdk-11.0.10+9 release=11 run=docker run --rm -ti <image_name:tag> /bin/bash summary=AdoptOpenJDK Docker Image for OpenJDK with hotspot and ubi description=For more information on this image please see https://github.com/AdoptOpenJDK/openjdk-docker/blob/master/README.md

2021-04-21 12:01:53 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=jdk-11.0.10+9

2021-04-21 12:02:19 UTC

/bin/sh -c set -eux; ARCH="$(uname -m)"; case "${ARCH}" in aarch64|arm64) ESUM='420c5d1e5dc66b2ed7dedd30a7bdf94bfaed10d5e1b07dc579722bf60a8114a9'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.10_9.tar.gz'; ;; ppc64el|ppc64le) ESUM='e1d130a284f0881893711f17df83198d320c16f807de823c788407af019b356b'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.10_9.tar.gz'; ;; s390x) ESUM='b55e5d774bcec96b7e6ffc8178a17914ab151414f7048abab3afe3c2febb9a20'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.10_9.tar.gz'; ;; amd64|x86_64) ESUM='ae78aa45f84642545c01e8ef786dfd700d2226f8b12881c844d6a1f71789cb99'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz'; ;; *) echo "Unsupported arch: ${ARCH}"; exit 1; ;; esac; curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; mkdir -p /opt/java/openjdk; cd /opt/java/openjdk; tar -xf /tmp/openjdk.tar.gz --strip-components=1; rm -rf /tmp/openjdk.tar.gz;

2021-04-21 12:02:20 UTC

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

2021-04-21 12:02:21 UTC

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

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