logo
docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal
linux/amd64 docker.io

镜像描述

eclipse-temurin镜像提供了OpenJDK的预构建版本,由Adoptium项目维护。它旨在提供高质量、经过测试和认证的OpenJDK发行版,可用于开发和运行Java应用程序。

此镜像适用于需要OpenJDK环境的Docker容器,简化了Java应用程序的部署流程。它包含了必要的运行时环境,例如JVM和Java类库,以便您可以直接在容器中运行Java代码。

470
浏览次数
317.02MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal
源镜像
docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal
镜像ID
sha256:502d72bea0e88c83bf9be1db550bbff5b1bd9197104ea40d698c2dc6bd29bb55
镜像 TAG
11.0.29_7-jre-ubi9-minimal
镜像大小
317.02MB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/__cacert_entrypoint.sh
工作目录
/
OS/平台
linux/amd64
镜像创建
2025-12-02T00:39:14.598307769Z
同步时间
2025-12-04 14:22
浏览量
470 次
贡献者
⚙️ 环境变量 7
KeyValue
PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
container=oci 1
JAVA_HOME=/opt/java/openjdk 2
LANG=en_US.UTF-8 3
LANGUAGE=en_US:en 4
LC_ALL=en_US.UTF-8 5
JAVA_VERSION=jdk-11.0.29+7 6
🏷️ 镜像标签 23
KeyValue
x86_64 architecture
2025-12-01T08:45:48Z build-date
ubi9-minimal-container com.redhat.component
https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI com.redhat.license_terms
cpe:/a:redhat:enterprise_linux:9::appstream cpe
The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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. description
public distribution-scope
1.41.4 io.buildah.version
The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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.description
Red Hat Universal Base Image 9 Minimal io.k8s.display-name
io.openshift.expose-services
minimal rhel9 io.openshift.tags
Red Hat, Inc. maintainer
ubi9/ubi-minimal name
2025-12-01T08:45:48Z org.opencontainers.image.created
aa778ff26f397863d5f50a6cf5f17a2343e5a626 org.opencontainers.image.revision
1764578379 release
Provides the latest release of the minimal Red Hat Universal Base Image 9. summary
https://catalog.redhat.com/en/search?searchType=containers url
aa778ff26f397863d5f50a6cf5f17a2343e5a626 vcs-ref
git vcs-type
Red Hat, Inc. vendor
9.7 version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal  docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal  docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal

Shell快速替换命令

sed -i 's#eclipse-temurin:11.0.29_7-jre-ubi9-minimal#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal  docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal  docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal'

镜像构建历史


# 2025-12-02 08:39:14  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/__cacert_entrypoint.sh"]
                        
# 2025-12-02 08:39:14  5.31KB 复制新文件或目录到容器中
COPY --chmod=755 entrypoint.sh /__cacert_entrypoint.sh # buildkit
                        
# 2025-12-02 08:39:14  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     echo "Verifying install ...";     echo "java --version"; java --version;     echo "Complete." # buildkit
                        
# 2025-12-02 08:39:14  129.65MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     ARCH="$(rpm --query --queryformat='%{ARCH}' rpm)";     case "${ARCH}" in        aarch64)          ESUM='8e4c0bb2488f8abd0379b660963ed981b1e136b975f3faf562e07cce81977700';          BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29%2B7/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.29_7.tar.gz';          ;;        ppc64le)          ESUM='3d58318c01cc461809a8a9b15f3d52990c6e522f8a88c6b2c69dd4b57a613537';          BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29%2B7/OpenJDK11U-jre_ppc64le_linux_hotspot_11.0.29_7.tar.gz';          ;;        s390x)          ESUM='8487926c19c505d7f2c3b33c352962fa0f26922f29d15d0599917acf8203a67b';          BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29%2B7/OpenJDK11U-jre_s390x_linux_hotspot_11.0.29_7.tar.gz';          ;;        x86_64)          ESUM='97a4c089411868e24bf74a9789a819ae4164818316f8a3146460a102e8db6149';          BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29%2B7/OpenJDK11U-jre_x64_linux_hotspot_11.0.29_7.tar.gz';          ;;        *)          echo "Unsupported arch: ${ARCH}";          exit 1;          ;;     esac;     wget --progress=dot:giga -O /tmp/openjdk.tar.gz ${BINARY_URL};     wget --progress=dot:giga -O /tmp/openjdk.tar.gz.sig ${BINARY_URL}.sig;     export GNUPGHOME="$(mktemp -d)";     gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 3B04D753C9050D9A5D343F39843C48A565F8F04B;     gpg --batch --verify /tmp/openjdk.tar.gz.sig /tmp/openjdk.tar.gz;     rm -rf "${GNUPGHOME}" /tmp/openjdk.tar.gz.sig;     echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -;     mkdir -p "$JAVA_HOME";     tar --extract         --file /tmp/openjdk.tar.gz         --directory "$JAVA_HOME"         --strip-components 1         --no-same-owner     ;     rm -f /tmp/openjdk.tar.gz; # buildkit
                        
# 2025-12-02 08:37:52  0.00B 设置环境变量 JAVA_VERSION
ENV JAVA_VERSION=jdk-11.0.29+7
                        
# 2025-12-02 08:37:52  81.95MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     microdnf install -y         gzip         tar         binutils         tzdata         wget         ca-certificates         openssl         fontconfig         glibc-langpack-en     ;     microdnf clean all # buildkit
                        
# 2025-12-02 08:37:52  0.00B 设置环境变量 LANG LANGUAGE LC_ALL
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
                        
# 2025-12-02 08:37:52  0.00B 设置环境变量 PATH
ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-12-02 08:37:52  0.00B 设置环境变量 JAVA_HOME
ENV JAVA_HOME=/opt/java/openjdk
                        
# 2025-12-01 16:46:06  105.41MB 
/bin/sh -c #(nop) LABEL "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="aa778ff26f397863d5f50a6cf5f17a2343e5a626" "org.opencontainers.image.revision"="aa778ff26f397863d5f50a6cf5f17a2343e5a626" "build-date"="2025-12-01T08:45:48Z" "org.opencontainers.image.created"="2025-12-01T08:45:48Z" "release"="1764578379"org.opencontainers.image.revision=aa778ff26f397863d5f50a6cf5f17a2343e5a626,org.opencontainers.image.created=2025-12-01T08:45:48Z
                        
# 2025-12-01 16:46:06  0.00B 
/bin/sh -c #(nop) COPY file:b2d99215ad0f777fc208a0abcf88392b89d81310198466ef08702f0413990c72 in /root/buildinfo/labels.json      
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) COPY file:b2d99215ad0f777fc208a0abcf88392b89d81310198466ef08702f0413990c72 in /usr/share/buildinfo/labels.json      
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) COPY file:93583a9ebbaeff1e36b48820b647eea1eef523f6627dacfb0b21af79f5a41b35 in /root/buildinfo/content_manifests/content-sets.json      
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) COPY file:93583a9ebbaeff1e36b48820b647eea1eef523f6627dacfb0b21af79f5a41b35 in /usr/share/buildinfo/content-sets.json      
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) CMD ["/bin/bash"]
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) COPY file:1376702515d596f414e3aa494e0daa6d408a6d2475c4aeca96bf9392f5287f69 in /etc/yum.repos.d/.      
                        
# 2025-12-01 16:46:05  0.00B 
/bin/sh -c #(nop) COPY dir:9e1be6ea7c9ab655dce87115dc5a86f74430f6cce27de363947899ca9c40a12b in /      
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) ENV container oci
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="minimal rhel9"
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="Red Hat Universal Base Image 9 Minimal"
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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."
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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."
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides the latest release of the minimal Red Hat Universal Base Image 9."
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="ubi9-minimal-container"       name="ubi9/ubi-minimal"       version="9.7"       cpe="cpe:/a:redhat:enterprise_linux:9::appstream"       distribution-scope="public"
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL url="https://catalog.redhat.com/en/search?searchType=containers"
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL vendor="Red Hat, Inc."
                        
# 2025-12-01 16:46:04  0.00B 
/bin/sh -c #(nop) LABEL maintainer="Red Hat, Inc."
                        
                    

镜像信息

{
    "Id": "sha256:502d72bea0e88c83bf9be1db550bbff5b1bd9197104ea40d698c2dc6bd29bb55",
    "RepoTags": [
        "eclipse-temurin:11.0.29_7-jre-ubi9-minimal",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal"
    ],
    "RepoDigests": [
        "eclipse-temurin@sha256:8cc9a129f8e1bc0b9f544b5cf613b70676fad609c86004c56d742bcaf1631eda",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/eclipse-temurin@sha256:d098acff0f746b3c146cef444086b48345cadeeedc5390fff105512ec4552c4b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-02T00:39:14.598307769Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "container=oci",
            "JAVA_HOME=/opt/java/openjdk",
            "LANG=en_US.UTF-8",
            "LANGUAGE=en_US:en",
            "LC_ALL=en_US.UTF-8",
            "JAVA_VERSION=jdk-11.0.29+7"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/__cacert_entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "architecture": "x86_64",
            "build-date": "2025-12-01T08:45:48Z",
            "com.redhat.component": "ubi9-minimal-container",
            "com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
            "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream",
            "description": "The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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.",
            "distribution-scope": "public",
            "io.buildah.version": "1.41.4",
            "io.k8s.description": "The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. 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 9 Minimal",
            "io.openshift.expose-services": "",
            "io.openshift.tags": "minimal rhel9",
            "maintainer": "Red Hat, Inc.",
            "name": "ubi9/ubi-minimal",
            "org.opencontainers.image.created": "2025-12-01T08:45:48Z",
            "org.opencontainers.image.revision": "aa778ff26f397863d5f50a6cf5f17a2343e5a626",
            "release": "1764578379",
            "summary": "Provides the latest release of the minimal Red Hat Universal Base Image 9.",
            "url": "https://catalog.redhat.com/en/search?searchType=containers",
            "vcs-ref": "aa778ff26f397863d5f50a6cf5f17a2343e5a626",
            "vcs-type": "git",
            "vendor": "Red Hat, Inc.",
            "version": "9.7"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 317016185,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0c42badcd79f1b7fa471cbfb354e9c0a6a4801dea1f829c3c5508a998e300eb8/diff:/var/lib/docker/overlay2/fd5e95065a325d973009d9c4fa11889e35351357c621d2478e6dfbd217c9439a/diff:/var/lib/docker/overlay2/3fd85de0592e3e79e0d5e4483e0a5ebbd09ff5c60b6a78b4cbb30189870dc900/diff:/var/lib/docker/overlay2/a2638813a6ac6011ff0d61d4009acaf26cb70b99efafc6b11ce0cb06f152ac5f/diff",
            "MergedDir": "/var/lib/docker/overlay2/4c078642c7fa302b1a4d729e0e1041ff61eb447ccc59584097716998fe7da97a/merged",
            "UpperDir": "/var/lib/docker/overlay2/4c078642c7fa302b1a4d729e0e1041ff61eb447ccc59584097716998fe7da97a/diff",
            "WorkDir": "/var/lib/docker/overlay2/4c078642c7fa302b1a4d729e0e1041ff61eb447ccc59584097716998fe7da97a/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:8c54c03d362d204c565790a2e1321dbe0b98179572e8fc2efd3aa69d37f21a8b",
            "sha256:e3e7521ca900b72b032f68662cb3602f928d19b534485d4cdcf4384c37a4183c",
            "sha256:4e1abc7c08115e2b3a5f5729bd11c6f94b79985dede46bad16dced43cf8d580e",
            "sha256:72f6f1b0257dacc4be8763e7aec3d066017173d5527f0c8978fd09100d5285d5",
            "sha256:971d70bcf5bd314b91a9372fc07de040482f9c783f7e45e22dd811c1cf5e67a2"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-04T14:22:31.412900691+08:00"
    }
}

更多版本

docker.io/eclipse-temurin:21-jre

linux/amd64 docker.io279.46MB2024-07-16 11:28
6158

docker.io/eclipse-temurin:21.0.4_7-jdk-alpine

linux/amd64 docker.io346.73MB2024-09-05 10:13
2482

docker.io/eclipse-temurin:17.0.12_7-jdk-alpine

linux/amd64 docker.io317.89MB2024-09-13 22:10
1647

docker.io/eclipse-temurin:17.0.12_7-jre-alpine

linux/amd64 docker.io166.94MB2024-09-23 13:55
1793

docker.io/eclipse-temurin:8-jdk

linux/amd64 docker.io320.28MB2024-10-09 11:36
3982

docker.io/eclipse-temurin:8-jre

linux/amd64 docker.io231.06MB2024-10-24 15:30
3422

docker.io/eclipse-temurin:21.0.5_11-jre-noble

linux/amd64 docker.io286.86MB2024-11-06 15:05
1302

docker.io/eclipse-temurin:17-jdk-jammy

linux/amd64 docker.io413.23MB2024-11-14 15:41
3135

docker.io/eclipse-temurin:17.0.13_11-jdk-alpine

linux/amd64 docker.io335.97MB2024-12-02 08:14
1406

docker.io/eclipse-temurin:21.0.6_7-jre-noble

linux/amd64 docker.io286.88MB2025-02-11 09:16
752

docker.io/eclipse-temurin:11.0.22_7-jdk-jammy

linux/amd64 docker.io392.33MB2025-02-13 16:16
928

docker.io/eclipse-temurin:11.0.22_7-jre-jammy

linux/amd64 docker.io254.70MB2025-02-13 16:28
1258

docker.io/eclipse-temurin:23.0.2_7-jre-alpine-3.21

linux/amd64 docker.io204.46MB2025-02-24 23:14
743

docker.io/eclipse-temurin:23.0.2_7-jre-alpine-3.21

linux/arm64 docker.io204.72MB2025-02-24 23:15
623

docker.io/eclipse-temurin:21.0.6_7-jdk-noble

linux/amd64 docker.io447.46MB2025-03-13 14:45
1325

docker.io/eclipse-temurin:21-jre-alpine

linux/amd64 docker.io204.52MB2025-04-08 20:08
3078

docker.io/eclipse-temurin:21-jdk-jammy

linux/amd64 docker.io441.20MB2025-04-10 09:16
2164

docker.io/eclipse-temurin:11

linux/amd64 docker.io401.07MB2025-04-10 20:13
1491

docker.io/eclipse-temurin:8u442-b06-jdk-noble

linux/amd64 docker.io274.17MB2025-04-11 17:22
952

docker.io/eclipse-temurin:17-noble

linux/amd64 docker.io419.54MB2025-04-14 18:42
990

docker.io/eclipse-temurin:21.0.7_6-jre-alpine

linux/amd64 docker.io204.54MB2025-04-27 10:03
964

docker.io/eclipse-temurin:11-jre-alpine

linux/amd64 docker.io169.36MB2025-05-15 13:48
1026

docker.io/eclipse-temurin:17-jdk-alpine

linux/amd64 docker.io331.91MB2025-05-17 00:00
2653

docker.io/eclipse-temurin:21.0.7_6-jre

linux/amd64 docker.io286.90MB2025-05-26 14:51
1083

docker.io/eclipse-temurin:24.0.1_9-jre

linux/amd64 docker.io313.79MB2025-05-30 14:37
678

docker.io/eclipse-temurin:17.0.15_6-jdk

linux/amd64 docker.io419.68MB2025-06-13 14:43
2039

docker.io/eclipse-temurin:17-jre

linux/amd64 docker.io262.59MB2025-06-17 19:08
2601

docker.io/eclipse-temurin:17-jre-alpine-3.21

linux/amd64 docker.io180.23MB2025-06-18 16:44
1802

docker.io/eclipse-temurin:21-jdk-alpine

linux/amd64 docker.io360.42MB2025-06-21 22:28
2037

docker.io/eclipse-temurin:17-jdk-jammy

linux/arm64 docker.io408.85MB2025-07-02 15:35
1002

docker.io/eclipse-temurin:21-jdk-noble

linux/amd64 docker.io447.59MB2025-07-05 12:42
613

docker.io/eclipse-temurin:21-jdk-noble

linux/arm64 docker.io477.71MB2025-07-05 12:46
676

docker.io/eclipse-temurin:23-jre-alpine-3.21

linux/amd64 docker.io204.46MB2025-07-14 12:00
748

docker.io/eclipse-temurin:11-jre-focal

linux/amd64 docker.io266.71MB2025-07-14 18:32
759

docker.io/eclipse-temurin:8-jdk-alpine

linux/amd64 docker.io190.43MB2025-07-15 18:45
1679

docker.io/eclipse-temurin:24.0.1_9-jre-noble

linux/amd64 docker.io313.81MB2025-07-16 17:11
558

docker.io/eclipse-temurin:11.0.27_6-jre-noble

linux/amd64 docker.io263.29MB2025-07-16 17:36
493

docker.io/eclipse-temurin:17.0.15_6-jre-jammy

linux/amd64 docker.io261.12MB2025-08-04 10:55
581

docker.io/eclipse-temurin:11.0.28_6-jdk-ubi10-minimal

linux/arm64 docker.io510.13MB2025-08-07 14:29
1071

docker.io/eclipse-temurin:17-jdk

linux/arm64 docker.io451.36MB2025-09-11 16:26
656

docker.io/eclipse-temurin:17-jdk

linux/amd64 docker.io419.80MB2025-09-12 21:55
1548

docker.io/eclipse-temurin:8-jdk

linux/arm64 docker.io300.55MB2025-09-24 15:39
698

docker.io/eclipse-temurin:24.0.1_9-jre-alpine-3.21

linux/amd64 docker.io235.28MB2025-09-25 16:34
461

docker.io/eclipse-temurin:21.0.8_9-jdk-noble

linux/amd64 docker.io447.95MB2025-09-30 15:41
451

docker.io/eclipse-temurin:21.0.8_9-jre-noble

linux/amd64 docker.io287.17MB2025-09-30 15:44
538

docker.io/eclipse-temurin:8u462-b08-jre

linux/amd64 docker.io231.12MB2025-10-28 09:08
612

docker.io/eclipse-temurin:8u462-b08-jre

linux/arm64 docker.io254.61MB2025-10-28 09:11
496

docker.io/eclipse-temurin:21-jdk-jammy

linux/arm64 docker.io435.71MB2025-11-04 13:18
692

docker.io/eclipse-temurin:11-jdk

linux/amd64 docker.io401.20MB2025-11-07 19:51
528

docker.io/eclipse-temurin:8-jre-alpine-3.21

linux/amd64 docker.io149.35MB2025-11-14 15:44
868

docker.io/eclipse-temurin:25.0.1_8-jdk-noble

linux/amd64 docker.io391.50MB2025-11-30 00:29
679

docker.io/eclipse-temurin:21.0.9_10-jdk-noble

linux/amd64 docker.io447.98MB2025-11-30 00:32
527

docker.io/eclipse-temurin:8u472-b08-jdk-noble

linux/amd64 docker.io274.22MB2025-11-30 00:34
881

docker.io/eclipse-temurin:25-jdk-noble

linux/amd64 docker.io391.50MB2025-12-04 10:34
1220

docker.io/eclipse-temurin:11.0.29_7-jre-noble

linux/amd64 docker.io262.50MB2025-12-04 11:16
396

docker.io/eclipse-temurin:17.0.17_10-jdk-noble

linux/amd64 docker.io420.06MB2025-12-04 11:21
510

docker.io/eclipse-temurin:11.0.29_7-jre-ubi9-minimal

linux/amd64 docker.io317.02MB2025-12-04 14:22
469

docker.io/eclipse-temurin:8-jdk-noble

linux/amd64 docker.io274.22MB2025-12-04 14:27
432

docker.io/eclipse-temurin:17-jre-noble

linux/amd64 docker.io262.83MB2025-12-10 21:54
502

docker.io/eclipse-temurin:17-jre

linux/arm64 docker.io288.48MB2025-12-26 15:52
441

docker.io/eclipse-temurin:8u392-b08-jdk-alpine

linux/amd64 docker.io228.54MB2026-01-19 12:50
511

docker.io/eclipse-temurin:8u472-b08-jdk

linux/amd64 docker.io274.22MB2026-01-21 20:23
436

docker.io/eclipse-temurin:8u472-b08-jdk-alpine

linux/amd64 docker.io191.26MB2026-01-21 20:37
533

docker.io/eclipse-temurin:21-jdk

linux/arm64 docker.io510.12MB2026-02-12 18:11
487

docker.io/eclipse-temurin:25-jdk-alpine

linux/amd64 docker.io302.47MB2026-02-15 20:51
726

docker.io/eclipse-temurin:17.0.18_8-jdk-alpine

linux/amd64 docker.io335.13MB2026-02-27 17:25
496

docker.io/eclipse-temurin:8u482-b08-jdk

linux/amd64 docker.io275.20MB2026-03-02 15:47
408

docker.io/eclipse-temurin:8u482-b08-jdk-noble

linux/amd64 docker.io275.20MB2026-03-10 17:57
353

docker.io/eclipse-temurin:11.0.30_7-jdk-noble

linux/amd64 docker.io401.35MB2026-03-10 18:00
335

docker.io/eclipse-temurin:8u482-b08-jdk-noble

linux/arm64 docker.io301.40MB2026-03-11 11:45
360

docker.io/eclipse-temurin:11.0.30_7-jdk-noble

linux/arm64 docker.io422.17MB2026-03-11 11:47
267

docker.io/eclipse-temurin:17.0.18_8-jre-noble

linux/amd64 docker.io263.64MB2026-03-20 17:59
280

docker.io/eclipse-temurin:8u482-b08-jre

linux/amd64 docker.io232.09MB2026-03-31 10:11
446

docker.io/eclipse-temurin:17-jdk-noble

linux/amd64 docker.io421.25MB2026-04-02 08:28
492

docker.io/eclipse-temurin:17.0.18_8-jdk-jammy

linux/amd64 docker.io415.16MB2026-04-09 15:55
315

docker.io/eclipse-temurin:8-jre

linux/arm64 docker.io255.42MB2026-04-20 17:56
322

docker.io/eclipse-temurin:21.0.10_7-jdk-ubi10-minimal

linux/amd64 docker.io492.47MB2026-04-23 17:28
306

docker.io/eclipse-temurin:11.0.31_11-jdk

linux/amd64 docker.io432.04MB2026-05-11 12:51
253

docker.io/eclipse-temurin:17.0.19_10-jdk-noble

linux/amd64 docker.io421.81MB2026-05-11 14:22
299

docker.io/eclipse-temurin:21.0.11_10-jdk-noble

linux/amd64 docker.io448.65MB2026-05-11 16:52
269

docker.io/eclipse-temurin:8-jdk-jammy

linux/amd64 docker.io273.92MB2026-05-11 18:34
317

docker.io/eclipse-temurin:8u492-b09-jdk-jammy

linux/amd64 docker.io273.96MB2026-05-21 09:04
324

docker.io/eclipse-temurin:11.0.31_11-jdk-jammy

linux/amd64 docker.io400.24MB2026-05-21 09:13
214

docker.io/eclipse-temurin:21.0.11_10-jdk-jammy

linux/amd64 docker.io442.56MB2026-05-21 19:21
264

docker.io/eclipse-temurin:21.0.8_9-jdk-alpine-3.22

linux/amd64 docker.io361.96MB2026-05-21 19:48
208

docker.io/eclipse-temurin:8u482-b08-jdk-alpine-3.21

linux/amd64 docker.io191.42MB2026-05-22 13:59
183

docker.io/eclipse-temurin:8-jdk-alpine-3.21

linux/amd64 docker.io191.56MB2026-05-26 16:05
213

docker.io/eclipse-temurin:21.0.11_10-jre-alpine-3.23

linux/amd64 docker.io207.34MB2026-05-27 17:16
217

docker.io/eclipse-temurin:17.0.19_10-jre-ubi10-minimal

linux/amd64 docker.io328.02MB2026-05-29 16:18
264

docker.io/eclipse-temurin:17.0.19_10-jdk-ubi10-minimal

linux/amd64 docker.io467.16MB2026-05-29 16:19
192

docker.io/eclipse-temurin:11-jdk-jammy

linux/amd64 docker.io400.24MB2026-06-05 17:32
185

docker.io/eclipse-temurin:8-jdk-ubi9-minimal

linux/amd64 docker.io336.29MB2026-06-09 15:05
270

docker.io/eclipse-temurin:17-jre-alpine-3.23

linux/amd64 docker.io183.60MB2026-06-23 16:12
145

docker.io/eclipse-temurin:25.0.3_9-jdk

linux/amd64 docker.io413.88MB2026-07-03 10:51
433

docker.io/eclipse-temurin:21.0.11_10-jdk

linux/amd64 docker.io474.81MB2026-07-03 14:22
163

docker.io/eclipse-temurin:17.0.19_10-jdk

linux/amd64 docker.io447.97MB2026-07-03 15:03
156

docker.io/eclipse-temurin:25.0.3_9-jdk-noble

linux/arm64 docker.io422.19MB2026-07-15 02:08
84

docker.io/eclipse-temurin:21.0.11_10-jre-jammy

linux/amd64 docker.io286.27MB2026-07-15 11:04
112

docker.io/eclipse-temurin:17-jre-jammy

linux/amd64 docker.io262.63MB2026-07-30 17:49
87

docker.io/eclipse-temurin:21-alpine

linux/amd64 docker.io363.11MB2026-07-31 10:51
67
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×