广告图片

docker.io/apache/hive:4.2.0 linux/amd64

docker.io/apache/hive:4.2.0 - 国内下载镜像源 浏览次数:9 安全受验证的发布者-apache

源镜像 docker.io/apache/hive:4.2.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0
镜像ID sha256:0bcb66d778fdff5c650eb081fb9d2809fae587c1ba1454656edf28e12203ea8a
镜像TAG 4.2.0
大小 2.29GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 sh -c /entrypoint.sh
工作目录 /opt/hive
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2025-11-28T13:25:21.676512106Z
同步时间 2026-05-14 15:50
开放端口
10000/tcp 10002/tcp 9083/tcp
环境变量
PATH=/opt/hive/bin:/opt/hadoop/bin:/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-21.0.3+9 HADOOP_HOME=/opt/hadoop HIVE_HOME=/opt/hive TEZ_HOME=/opt/tez HIVE_VER=4.2.0
镜像标签
x86_64: architecture 2024-06-06T00:53:59: 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 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.29.0: 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-minimal: name 1134: release Provides the latest release of the minimal Red Hat Universal Base Image 9.: summary https://access.redhat.com/containers/#/registry.access.redhat.com/ubi9-minimal/images/9.4-1134: url 4b4efbdd5a311b6a9c56319e756ca58c10a2b4de: vcs-ref git: vcs-type Red Hat, Inc.: vendor 9.4: version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0  docker.io/apache/hive:4.2.0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0  docker.io/apache/hive:4.2.0

Shell快速替换命令

sed -i 's#apache/hive:4.2.0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0  docker.io/apache/hive:4.2.0'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0  docker.io/apache/hive:4.2.0'

镜像构建历史


# 2025-11-28 21:25:21  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["sh" "-c" "/entrypoint.sh"]
                        
# 2025-11-28 21:25:21  0.00B 声明容器运行时监听的端口
EXPOSE [10000/tcp 10002/tcp 9083/tcp]
                        
# 2025-11-28 21:25:21  0.00B 设置工作目录为/opt/hive
WORKDIR /opt/hive
                        
# 2025-11-28 21:25:21  0.00B 指定运行容器时使用的用户
USER hive
                        
# 2025-11-28 21:25:21  3.51KB 执行命令并创建新的镜像层
RUN |4 UID=1000 HADOOP_VERSION=3.4.1 HIVE_VERSION=4.2.0 TEZ_VERSION=0.10.5 /bin/sh -c chmod +x /entrypoint.sh &&     mkdir -p $HIVE_HOME/data/warehouse &&     chown hive $HIVE_HOME/data/warehouse &&     mkdir -p /home/hive/.beeline &&     chown hive /home/hive/.beeline # buildkit
                        
# 2025-11-28 21:25:21  5.35KB 复制新文件或目录到容器中
COPY --chown=hive conf /opt/hive/conf # buildkit
                        
# 2025-11-28 21:25:21  3.51KB 复制新文件或目录到容器中
COPY --chown=hive entrypoint.sh / # buildkit
                        
# 2025-11-28 21:25:21  23.66MB 复制新文件或目录到容器中
COPY --chown=hive /opt/apache-tez-0.10.5-bin /opt/tez # buildkit
                        
# 2025-11-28 21:25:21  531.83MB 复制新文件或目录到容器中
COPY --chown=hive /opt/apache-hive-4.2.0-bin /opt/hive # buildkit
                        
# 2025-11-28 21:25:19  1.26GB 复制新文件或目录到容器中
COPY --chown=hive /opt/hadoop-3.4.1 /opt/hadoop # buildkit
                        
# 2025-11-28 20:04:36  0.00B 设置环境变量 PATH
ENV PATH=/opt/hive/bin:/opt/hadoop/bin:/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-11-28 20:04:36  0.00B 设置环境变量 HADOOP_HOME HIVE_HOME TEZ_HOME HIVE_VER
ENV HADOOP_HOME=/opt/hadoop HIVE_HOME=/opt/hive TEZ_HOME=/opt/tez HIVE_VER=4.2.0
                        
# 2025-11-28 20:04:36  140.53MB 执行命令并创建新的镜像层
RUN |4 UID=1000 HADOOP_VERSION=3.4.1 HIVE_VERSION=4.2.0 TEZ_VERSION=0.10.5 /bin/sh -c set -ex;     microdnf update -y;     microdnf -y install procps gettext;     microdnf clean all;     useradd --no-create-home -s /sbin/nologin -c "" --uid $UID hive # buildkit
                        
# 2025-11-28 20:04:36  0.00B 定义构建参数
ARG TEZ_VERSION=0.10.5
                        
# 2025-11-28 20:04:36  0.00B 定义构建参数
ARG HIVE_VERSION=4.2.0
                        
# 2025-11-28 20:04:36  0.00B 定义构建参数
ARG HADOOP_VERSION=3.4.1
                        
# 2025-11-28 20:04:36  0.00B 定义构建参数
ARG UID=1000
                        
# 2024-04-24 04:51:38  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/__cacert_entrypoint.sh"]
                        
# 2024-04-24 04:51:38  1.16KB 复制新文件或目录到容器中
COPY entrypoint.sh /__cacert_entrypoint.sh # buildkit
                        
# 2024-04-24 04:51:38  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     echo "Verifying install ...";     echo "java --version"; java --version;     echo "Complete." # buildkit
                        
# 2024-04-24 04:51:38  165.44MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')";     case "${ARCH}" in        aarch64|arm64)          ESUM='c7c31bc6f5ab4c4b6f4559e11c2fa9541ae6757ab8da6dd85c29163913bd9238';          BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.3_9.tar.gz';          ;;        amd64|i386:x86-64)          ESUM='f1af100c4afca2035f446967323230150cfe5872b5a664d98c86963e5c066e0d';          BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_x64_linux_hotspot_21.0.3_9.tar.gz';          ;;        ppc64el|powerpc:common64)          ESUM='aa628c6accc9d075b7b0f2bff6487f8ca0b8f057af31842a85fc8b363e1e10f3';          BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_ppc64le_linux_hotspot_21.0.3_9.tar.gz';          ;;        s390x|s390:64-bit)          ESUM='a60dbad08a1977269dec7782f90225107479bfc8d10d2894f437778ae2e2b737';          BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_s390x_linux_hotspot_21.0.3_9.tar.gz';          ;;        *)          echo "Unsupported arch: ${ARCH}";          exit 1;          ;;     esac;     wget --progress=dot:giga -O /tmp/openjdk.tar.gz ${BINARY_URL};     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 ${JAVA_HOME}/lib/src.zip; # buildkit
                        
# 2024-04-24 04:51:38  0.00B 设置环境变量 JAVA_VERSION
ENV JAVA_VERSION=jdk-21.0.3+9
                        
# 2024-04-24 04:51:38  73.23MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     microdnf install -y         gzip         tar         binutils         tzdata         wget         ca-certificates         fontconfig         glibc-langpack-en     ;     microdnf clean all # buildkit
                        
# 2024-04-24 04:51:38  0.00B 设置环境变量 LANG LANGUAGE LC_ALL
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
                        
# 2024-04-24 04:51:38  0.00B 设置环境变量 PATH
ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2024-04-24 04:51:38  0.00B 设置环境变量 JAVA_HOME
ENV JAVA_HOME=/opt/java/openjdk
                        
# 2024-06-06 09:00:51  98.67MB 
/bin/sh -c mv -fZ /tmp/ubi.repo /etc/yum.repos.d/ubi.repo || :
                        
# 2024-06-06 09:00:50  0.00B 
/bin/sh -c rm -f /tmp/tls-ca-bundle.pem
                        
# 2024-06-06 09:00:49  0.00B 
/bin/sh -c rm -f '/etc/yum.repos.d/repo-d5140.repo' '/etc/yum.repos.d/repo-4f47a.repo'
                        
# 2024-06-06 09:00:48  0.00B 
/bin/sh -c #(nop) LABEL "distribution-scope"="public" "vendor"="Red Hat, Inc." "build-date"="2024-06-06T00:53:59" "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="4b4efbdd5a311b6a9c56319e756ca58c10a2b4de" "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." "url"="https://access.redhat.com/containers/#/registry.access.redhat.com/ubi9-minimal/images/9.4-1134"
                        
# 2024-06-06 09:00:48  0.00B 
/bin/sh -c #(nop) ADD file:0394409f6db7784d16a6bf3439e7470dbb324dc30ed9d4c8db797157e4501a3f in /root/buildinfo/Dockerfile-ubi9-minimal-9.4-1134 
                        
# 2024-06-06 09:00:48  0.00B 
/bin/sh -c #(nop) ADD file:4163a5d830cc37221be507fb49bdb623672e7a59ca81defe42fc0122ff2067cc in /root/buildinfo/content_manifests/ubi9-minimal-container-9.4-1134.json 
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL release=1134
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c rm -rf /var/log/*
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) CMD ["/bin/bash"]
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) ENV container oci
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="minimal rhel9"
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="Red Hat Universal Base Image 9 Minimal"
                        
# 2024-06-06 09:00:47  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."
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides the latest release of the minimal Red Hat Universal Base Image 9."
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="ubi9-minimal-container"       name="ubi9-minimal"       version="9.4"
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) LABEL maintainer="Red Hat, Inc."
                        
# 2024-06-06 09:00:47  0.00B 
/bin/sh -c #(nop) ADD multi:171eafe5d6538aeb2cf5cf9f6e8618f56eddbc2d8e3acf65107d17c6cc9c35de in /etc/yum.repos.d/ 
                        
# 2024-06-06 09:00:46  0.00B 
/bin/sh -c #(nop) ADD file:5b1f650e1376d79fa3a65df4a154ea5166def95154b52c1c1097dfd8fc7d58eb in /tmp/tls-ca-bundle.pem 
                        
# 2024-06-06 09:00:46  0.00B 
/bin/sh -c mv -f /etc/yum.repos.d/ubi.repo /tmp || :
                        
# 2024-06-06 09:00:45  0.00B 
/bin/sh -c #(nop) ADD file:0177c7dc75a5666fd7d839eb5a0fe92cceec6ce76ec113c5d876fdb57ce3b149 in / 
                        
                    

镜像信息

{
    "Id": "sha256:0bcb66d778fdff5c650eb081fb9d2809fae587c1ba1454656edf28e12203ea8a",
    "RepoTags": [
        "apache/hive:4.2.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive:4.2.0"
    ],
    "RepoDigests": [
        "apache/hive@sha256:b0d2842722567a89ac35da8af9002b6bba0fc2d0eb272664954a1fa46d694472",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/hive@sha256:cb105d25a3e2d06bbdbafff5053bb7d1c8c476569747bc496a437992598ba7c1"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-28T13:25:21.676512106Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "hive",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "10000/tcp": {},
            "10002/tcp": {},
            "9083/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/opt/hive/bin:/opt/hadoop/bin:/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-21.0.3+9",
            "HADOOP_HOME=/opt/hadoop",
            "HIVE_HOME=/opt/hive",
            "TEZ_HOME=/opt/tez",
            "HIVE_VER=4.2.0"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/opt/hive",
        "Entrypoint": [
            "sh",
            "-c",
            "/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "architecture": "x86_64",
            "build-date": "2024-06-06T00:53:59",
            "com.redhat.component": "ubi9-minimal-container",
            "com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
            "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.29.0",
            "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-minimal",
            "release": "1134",
            "summary": "Provides the latest release of the minimal Red Hat Universal Base Image 9.",
            "url": "https://access.redhat.com/containers/#/registry.access.redhat.com/ubi9-minimal/images/9.4-1134",
            "vcs-ref": "4b4efbdd5a311b6a9c56319e756ca58c10a2b4de",
            "vcs-type": "git",
            "vendor": "Red Hat, Inc.",
            "version": "9.4"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2294609029,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/eeefa1b0d6673e98e00b4b86eb32a6d205f922bb28dbd0a5851656dff8a04392/diff:/var/lib/docker/overlay2/5f8289ec94b7019ab39695563bc5801d3c2c28911874040ec644875a4c49b027/diff:/var/lib/docker/overlay2/9d4d242390161d00e7d442d64b46e53dbcfec9d97f0438593f94306865bb78a1/diff:/var/lib/docker/overlay2/ca92e1c1940c29f19f43f65a39d08c8f72dcae50aa43b93317abaec593336e0e/diff:/var/lib/docker/overlay2/d1de16bb5e7d317e7f7af473d5553b4c187584dfc4a4015ac02f03cf2a9261d1/diff:/var/lib/docker/overlay2/7ef5f317502fd82c2609fa4816147c78f2f28c56d69a4bf7813ddc9fad3c52ee/diff:/var/lib/docker/overlay2/9755e9504dc506dc9e3c0471a1ebc1dcbf7796d40ebab912c5494f6eaa12e79a/diff:/var/lib/docker/overlay2/c71f8bf9da002b1f4d725b8292ce58dfb0fbb17e1cc8562e53b9dcd3ebe1bfb8/diff:/var/lib/docker/overlay2/04a615f4cc6cd9b59948bfc509f435df87485279a737b603f27de33225346e6c/diff:/var/lib/docker/overlay2/61c48deb2647fe72d4f6cde72aefe1ecdd329fd2a9b281db1a379935c9e142f1/diff:/var/lib/docker/overlay2/0e4489dcaa8ccf82886a49238bb9611110b1a90562a91fc600f8460eb5aa82be/diff:/var/lib/docker/overlay2/1791fa326758de52d7faae2a40627c1ca3135195e74c8d9604f1f06d15fdf6a6/diff",
            "MergedDir": "/var/lib/docker/overlay2/7c77c8c5ea3aeba5d68171f310866f4887dc140e95480a7b900232985cbfc737/merged",
            "UpperDir": "/var/lib/docker/overlay2/7c77c8c5ea3aeba5d68171f310866f4887dc140e95480a7b900232985cbfc737/diff",
            "WorkDir": "/var/lib/docker/overlay2/7c77c8c5ea3aeba5d68171f310866f4887dc140e95480a7b900232985cbfc737/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:53544948f51f66ab8080a28acc12474abac3103c6194ca36777aa60762ede49c",
            "sha256:0b862044ba95da6734e6fc4c0fb147909fb70133336462e037473dfdfa6ce9a3",
            "sha256:792eebfde0a2537fe6d519a1779487e5c147c610895de48391bec188a2e86972",
            "sha256:e9b94bcf8492d2255468027eab03e879beab28367d1d37e87fbab5d6ab128793",
            "sha256:cd91a088afe68ee6c40d3a93c0fc5a351e0ff9e05c4e631180ec82a09781283c",
            "sha256:67badbbbd9dd7cca9a9344bfe83c64c1e2d8e5e64f497694d696fee86ff71722",
            "sha256:70d73981048cf0c26adf6ea0720195901e33163d6ebdf42d7f336b2d70a2bb08",
            "sha256:5c3917ce42ed89b4b7a54caaa70cefbb37e7c9163e6de0bfd66742bd70314f2c",
            "sha256:81c37e14e82bd4582174d30de5f0854380796de27c515f79ef1844b6ef76e430",
            "sha256:0f2a3bc29aee0406d0b1af201405362822ddc47c8dbdc7bc157f8322cbec3679",
            "sha256:10168e512df7c3af38952d116ba32951c01f27794562cf907770a1cce6b4f87d",
            "sha256:36ec0b35bffe9872863d2aca5590bc80cc9d21af67d6bb0cac416534f1d0d358",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-05-14T15:45:53.983674705+08:00"
    }
}

更多版本

docker.io/apache/hive:4.0.0

linux/amd64 docker.io1.60GB2024-08-04 09:12
1083

docker.io/apache/hive:3.1.3

linux/amd64 docker.io888.95MB2024-08-14 18:16
1965

docker.io/apache/hive:4.2.0

linux/amd64 docker.io2.29GB2026-05-14 15:50
8