docker.io/splunk/splunk:9.1.1 linux/amd64

docker.io/splunk/splunk:9.1.1 - 国内下载镜像源 浏览次数:13
Splunk是一款日志分析和监控工具,可以对各种数据源进行实时分析、搜索和可视化。该镜像用于运行Splunk软件,提供了详细的日志记录、事件监控和数据可视化功能,帮助用户快速发现问题、优化性能和提高运维效率。
源镜像 docker.io/splunk/splunk:9.1.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1
镜像ID sha256:64805960ef7dd43fdcf690905ff4ffdefd22c0efe19ffa96fff71e1afa9b6614
镜像TAG 9.1.1
大小 2.15GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD start-service
启动入口 /sbin/entrypoint.sh
工作目录 /opt/splunk
OS/平台 linux/amd64
浏览量 13 次
贡献者
镜像创建 2023-09-08T18:15:23.053951936Z
同步时间 2025-11-05 14:48
更新时间 2025-11-06 03:11
开放端口
8000/tcp 8065/tcp 8088/tcp 8089/tcp 8191/tcp 9887/tcp 9997/tcp
目录挂载
/opt/splunk/etc /opt/splunk/var
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin container=oci BUSYBOX_URL= PYTHON_VERSION=3.7.16 PYTHON_GPG_KEY_ID=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D SPLUNK_HOME=/opt/splunk SPLUNK_GROUP=splunk SPLUNK_USER=splunk TMPSPLUNKDIR=/opt/splunk/tmp TMPETCDIR=/opt/splunk/tmp/etc SPLUNK_ROLE=splunk_standalone SPLUNK_DEFAULTS_URL= SPLUNK_ANSIBLE_HOME=/opt/ansible ANSIBLE_USER=ansible ANSIBLE_GROUP=ansible CONTAINER_ARTIFACT_DIR=/opt/container_artifact
镜像标签
x86_64: architecture 2023-08-02T16:00:59: build-date ubi8-minimal-container: com.redhat.component https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI: com.redhat.license_terms Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results.: 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 8 Minimal: io.k8s.display-name : io.openshift.expose-services minimal rhel8: io.openshift.tags support@splunk.com: maintainer splunk: name 1: release UBI 8 Docker image of Splunk Enterprise: summary https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.8-1037: url dee8029ddcc7ecbfbebb0905d2b15e134338616c: vcs-ref git: vcs-type splunk: vendor 9.1.1: version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1  docker.io/splunk/splunk:9.1.1

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1  docker.io/splunk/splunk:9.1.1

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2023-09-09 02:15:23  0.00B 设置默认要执行的命令
CMD ["start-service"]
                        
# 2023-09-09 02:15:23  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/sbin/entrypoint.sh"]
                        
# 2023-09-09 02:15:23  0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "/sbin/checkstate.sh || exit 1"] "30s" "30s" "3m0s" '\x05'}
                        
# 2023-09-09 02:15:23  0.00B 指定运行容器时使用的用户
USER ansible
                        
# 2023-09-09 02:15:23  251.21KB 执行命令并创建新的镜像层
RUN |1 SPLUNK_DEFAULTS_URL= /bin/sh -c sed -i -e 's/%sudo\s\+ALL=(ALL\(:ALL\)\?)\s\+ALL/%sudo ALL=NOPASSWD:ALL\nansible ALL=(splunk)NOPASSWD:ALL/g' /etc/sudoers     && echo 'Create the ansible user/group'     && groupadd -r ${ANSIBLE_GROUP}     && useradd -r -m -g ${ANSIBLE_GROUP} -s /bin/bash ${ANSIBLE_USER}     && usermod -aG sudo ${ANSIBLE_USER}     && usermod -aG ${ANSIBLE_GROUP} ${SPLUNK_USER}     && echo 'Container Artifact Directory is a place for all artifacts and logs that are generated by the provisioning process. The directory is owned by the user "ansible".'     && mkdir ${CONTAINER_ARTIFACT_DIR}     && chown -R ${ANSIBLE_USER}:${ANSIBLE_GROUP} ${CONTAINER_ARTIFACT_DIR}     && chmod -R 775 ${CONTAINER_ARTIFACT_DIR}     && chmod -R 555 ${SPLUNK_ANSIBLE_HOME}     && chgrp ${ANSIBLE_GROUP} ${SPLUNK_ANSIBLE_HOME} ${SPLUNK_ANSIBLE_HOME}/ansible.cfg     && chmod 775 ${SPLUNK_ANSIBLE_HOME}     && chmod 664 ${SPLUNK_ANSIBLE_HOME}/ansible.cfg     && chmod 755 /sbin/entrypoint.sh /sbin/createdefaults.py /sbin/checkstate.sh # buildkit
                        
# 2023-09-09 02:15:22  232.77KB 复制新文件或目录到容器中
COPY splunk-ansible /opt/ansible # buildkit
                        
# 2023-09-09 02:15:22  10.40KB 复制新文件或目录到容器中
COPY splunk/common-files/entrypoint.sh splunk/common-files/createdefaults.py splunk/common-files/checkstate.sh /sbin/ # buildkit
                        
# 2023-09-09 02:15:22  0.00B 指定运行容器时使用的用户
USER root
                        
# 2023-09-09 02:15:22  0.00B 设置环境变量 SPLUNK_ROLE SPLUNK_DEFAULTS_URL SPLUNK_ANSIBLE_HOME ANSIBLE_USER ANSIBLE_GROUP CONTAINER_ARTIFACT_DIR
ENV SPLUNK_ROLE=splunk_standalone SPLUNK_DEFAULTS_URL= SPLUNK_ANSIBLE_HOME=/opt/ansible ANSIBLE_USER=ansible ANSIBLE_GROUP=ansible CONTAINER_ARTIFACT_DIR=/opt/container_artifact
                        
# 2023-09-09 02:15:22  0.00B 定义构建参数
ARG SPLUNK_DEFAULTS_URL
                        
# 2023-09-09 02:15:22  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/splunk/etc /opt/splunk/var]
                        
# 2023-09-09 02:15:22  0.00B 声明容器运行时监听的端口
EXPOSE map[8000/tcp:{} 8065/tcp:{} 8088/tcp:{} 8089/tcp:{} 8191/tcp:{} 9887/tcp:{} 9997/tcp:{}]
                        
# 2023-09-09 02:15:22  892.93MB 复制新文件或目录到容器中
COPY /extras /opt # buildkit
                        
# 2023-09-09 02:15:07  0.00B 声明容器运行时监听的端口
EXPOSE map[8000/tcp:{} 8089/tcp:{}]
                        
# 2023-09-09 02:15:07  0.00B 设置工作目录为/opt/splunk
WORKDIR /opt/splunk
                        
# 2023-09-09 02:15:07  0.00B 指定运行容器时使用的用户
USER splunk
                        
# 2023-09-09 02:15:07  758.89MB 复制新文件或目录到容器中
COPY /minimal /opt # buildkit
                        
# 2023-09-09 02:14:04  4.44KB 执行命令并创建新的镜像层
RUN |2 UID=41812 GID=41812 /bin/sh -c groupadd -r -g ${GID} ${SPLUNK_GROUP}     && useradd -r -m -u ${UID} -g ${GID} -s /bin/bash ${SPLUNK_USER}     && chmod 755 /sbin/updateetc.sh # buildkit
                        
# 2023-09-09 02:14:03  1.08KB 复制新文件或目录到容器中
COPY splunk/common-files/updateetc.sh /sbin/ # buildkit
                        
# 2023-09-09 02:14:03  0.00B 定义构建参数
ARG GID=41812
                        
# 2023-09-09 02:14:03  0.00B 定义构建参数
ARG UID=41812
                        
# 2023-09-09 02:14:03  0.00B 设置环境变量 TMPETCDIR
ENV TMPETCDIR=/opt/splunk/tmp/etc
                        
# 2023-09-09 02:14:03  0.00B 设置环境变量 TMPSPLUNKDIR
ENV TMPSPLUNKDIR=/opt/splunk/tmp
                        
# 2023-09-09 02:14:03  0.00B 设置环境变量 SPLUNK_HOME SPLUNK_GROUP SPLUNK_USER
ENV SPLUNK_HOME=/opt/splunk SPLUNK_GROUP=splunk SPLUNK_USER=splunk
                        
# 2023-09-09 02:14:03  0.00B 添加元数据标签
LABEL maintainer=support@splunk.com
                        
# 2023-09-09 02:13:59  402.46MB 执行命令并创建新的镜像层
RUN |1 BUSYBOX_URL= /bin/sh -c mkdir /licenses     && curl -o /licenses/apache-2.0.txt https://www.apache.org/licenses/LICENSE-2.0.txt     && curl -o /licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf https://www.redhat.com/licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf     && /install.sh && rm -rf /install.sh # buildkit
                        
# 2023-09-09 02:08:29  4.80KB 复制新文件或目录到容器中
COPY install.sh /install.sh # buildkit
                        
# 2023-09-09 02:08:29  0.00B 设置环境变量 BUSYBOX_URL PYTHON_VERSION PYTHON_GPG_KEY_ID
ENV BUSYBOX_URL= PYTHON_VERSION=3.7.16 PYTHON_GPG_KEY_ID=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
                        
# 2023-09-09 02:08:29  0.00B 定义构建参数
ARG BUSYBOX_URL
                        
# 2023-09-09 02:08:29  0.00B 添加元数据标签
LABEL name=splunk maintainer=support@splunk.com vendor=splunk release=1 summary=UBI 8 Docker image of Splunk Enterprise description=Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results.
                        
# 2023-08-03 00:10:35  93.13MB 
/bin/sh -c mv -fZ /tmp/ubi.repo /etc/yum.repos.d/ubi.repo || :
                        
# 2023-08-03 00:10:33  0.00B 
/bin/sh -c rm -f /tmp/tls-ca-bundle.pem
                        
# 2023-08-03 00:10:32  0.00B 
/bin/sh -c rm -f '/etc/yum.repos.d/repo-cdf2d.repo' '/etc/yum.repos.d/repo-a0366.repo'
                        
# 2023-08-03 00:10:32  0.00B 
/bin/sh -c #(nop) LABEL "distribution-scope"="public" "vendor"="Red Hat, Inc." "build-date"="2023-08-02T16:00:59" "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="dee8029ddcc7ecbfbebb0905d2b15e134338616c" "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/ubi8-minimal/images/8.8-1037"
                        
# 2023-08-03 00:10:32  0.00B 
/bin/sh -c #(nop) ADD file:5dabfae6d4584aaa40baa717bfef3a001ec8660741f67aa71f25b9dd1210b581 in /root/buildinfo/Dockerfile-ubi8-minimal-8.8-1037 
                        
# 2023-08-03 00:10:31  0.00B 
/bin/sh -c #(nop) ADD file:274a78191ca7a379c581c872d084fa95c08eedf234e515d5b3c6190707bf565a in /root/buildinfo/content_manifests/ubi8-minimal-container-8.8-1037.json 
                        
# 2023-08-03 00:10:31  0.00B 
/bin/sh -c #(nop) LABEL release=1037
                        
# 2023-08-03 00:10:31  0.00B 
/bin/sh -c rm -rf /var/log/*
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) CMD ["/bin/bash"]
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) ENV container oci
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="minimal rhel8"
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="Red Hat Universal Base Image 8 Minimal"
                        
# 2023-08-03 00:10:30  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."
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides the latest release of the minimal Red Hat Universal Base Image 8."
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="ubi8-minimal-container"       name="ubi8-minimal"       version="8.8"
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) LABEL maintainer="Red Hat, Inc."
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) ADD multi:dad1054d72a3e8b4c584c001e3dcf03e2e308d6704afa67bdb7e61f11a6faa13 in /etc/yum.repos.d/ 
                        
# 2023-08-03 00:10:30  0.00B 
/bin/sh -c #(nop) ADD file:214c1de395c24e4a86ef9a706069ef30a9e804c63f851c37c35655e16fea3ced in /tmp/tls-ca-bundle.pem 
                        
# 2023-08-03 00:10:29  0.00B 
/bin/sh -c mv -f /etc/yum.repos.d/ubi.repo /tmp || :
                        
# 2023-08-03 00:10:28  0.00B 
/bin/sh -c #(nop) ADD file:5050cbc3c3c471a239532315b584776b5035ed3987a0e106c4f56dff3557db94 in / 
                        
                    

镜像信息

{
    "Id": "sha256:64805960ef7dd43fdcf690905ff4ffdefd22c0efe19ffa96fff71e1afa9b6614",
    "RepoTags": [
        "splunk/splunk:9.1.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk:9.1.1"
    ],
    "RepoDigests": [
        "splunk/splunk@sha256:20b1376a1677ef6eff611b1d1e25e3a170a715c646c2c27711bbb65b03f78ede",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/splunk/splunk@sha256:958de0a478d71366d62507567823f1122139aecdc6b34786f11d1ef6bf8243af"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2023-09-08T18:15:23.053951936Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "ansible",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "8000/tcp": {},
            "8065/tcp": {},
            "8088/tcp": {},
            "8089/tcp": {},
            "8191/tcp": {},
            "9887/tcp": {},
            "9997/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "container=oci",
            "BUSYBOX_URL=",
            "PYTHON_VERSION=3.7.16",
            "PYTHON_GPG_KEY_ID=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D",
            "SPLUNK_HOME=/opt/splunk",
            "SPLUNK_GROUP=splunk",
            "SPLUNK_USER=splunk",
            "TMPSPLUNKDIR=/opt/splunk/tmp",
            "TMPETCDIR=/opt/splunk/tmp/etc",
            "SPLUNK_ROLE=splunk_standalone",
            "SPLUNK_DEFAULTS_URL=",
            "SPLUNK_ANSIBLE_HOME=/opt/ansible",
            "ANSIBLE_USER=ansible",
            "ANSIBLE_GROUP=ansible",
            "CONTAINER_ARTIFACT_DIR=/opt/container_artifact"
        ],
        "Cmd": [
            "start-service"
        ],
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "/sbin/checkstate.sh || exit 1"
            ],
            "Interval": 30000000000,
            "Timeout": 30000000000,
            "StartPeriod": 180000000000,
            "Retries": 5
        },
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": {
            "/opt/splunk/etc": {},
            "/opt/splunk/var": {}
        },
        "WorkingDir": "/opt/splunk",
        "Entrypoint": [
            "/sbin/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "architecture": "x86_64",
            "build-date": "2023-08-02T16:00:59",
            "com.redhat.component": "ubi8-minimal-container",
            "com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
            "description": "Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results.",
            "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 8 Minimal",
            "io.openshift.expose-services": "",
            "io.openshift.tags": "minimal rhel8",
            "maintainer": "support@splunk.com",
            "name": "splunk",
            "release": "1",
            "summary": "UBI 8 Docker image of Splunk Enterprise",
            "url": "https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.8-1037",
            "vcs-ref": "dee8029ddcc7ecbfbebb0905d2b15e134338616c",
            "vcs-type": "git",
            "vendor": "splunk",
            "version": "9.1.1"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2147921413,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/daca3767ae37922d761cb2dcc31a5d93f468dce42298fa3d8e5d7a4a8cd45538/diff:/var/lib/docker/overlay2/d2280d066979d94d083ad62059bee185192dde554327a1a168385627d5235771/diff:/var/lib/docker/overlay2/029c02f5a619e188b028b01bc6ed752bd08918a085f6f5f3d15d7ad41b63a3f9/diff:/var/lib/docker/overlay2/8c9c34b454ea6f07b97c65bd67a6dc2b02303a84865fafe3868264aba8c0eed4/diff:/var/lib/docker/overlay2/d9034bb1c55b1a3eeb8ffdbb0092440c25526537533f3595253f31f1d61e1327/diff:/var/lib/docker/overlay2/e22a762f0c87aeac2db83dd01b62a668a746f86093dab85049a642b92af4c4c2/diff:/var/lib/docker/overlay2/a59b6661c24d55c6471c907ec94d961ccc7fd68637b3e49a967f3b8792cab7ee/diff:/var/lib/docker/overlay2/545cd4929b711d84a869f3511db5828f4a754e0190a0f3cef77258f0b0b46453/diff:/var/lib/docker/overlay2/c6235e16fe16a49f1f2b14eb7038886300cf13b1004c88f2d83d830e050bc9a6/diff:/var/lib/docker/overlay2/c8929416cd53fbe05ad841aec3cdcc2af1951e31e22a4dccfdc02c731260844a/diff",
            "MergedDir": "/var/lib/docker/overlay2/adc684d7cabd8a75818035d919c8a64991b95425a5a38a781c6ee4bfbcf8e4a9/merged",
            "UpperDir": "/var/lib/docker/overlay2/adc684d7cabd8a75818035d919c8a64991b95425a5a38a781c6ee4bfbcf8e4a9/diff",
            "WorkDir": "/var/lib/docker/overlay2/adc684d7cabd8a75818035d919c8a64991b95425a5a38a781c6ee4bfbcf8e4a9/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ad5362eb8973710afa7450bf83d239791333ed21195b84118618dedc15e41c96",
            "sha256:3f1070557c3f34788f3654c8e9d8c280734d9e59a04a358c0ebc55c61822c8fa",
            "sha256:67a79d26393c621c12476c59d76c55b9f4c407531d9f6b6ea5283df33aacf82e",
            "sha256:96980a6a476d75afe87aadc4857a108e23fcd565efd7c263eb4daa861167cf1d",
            "sha256:9ca079f390d59fac3f50ab9608604cfebf6d85217177ecb327ebf0e7acfe7d3f",
            "sha256:3ea0483628e9d1d646827c08774812e7e2fc0174b32cca4230647026daaf7839",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:d7ede1a0cc3116a4ff0a19e41d85623aaf44833ce3adcc49c083755aeb7da5e0",
            "sha256:9b272d8263d80c68a013ea0b98bd9909c193732678b0d6e526eddf6021150ea2",
            "sha256:40cd3c6d6c35e915bbf78190e439311cf1cab4f28ec146b8bad0d3693038d192",
            "sha256:7578fdff8844b91105595f25baf18a25f9ffbfab5d9a4fcc5f41d71c24ae6a69"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-05T14:46:33.288574879+08:00"
    }
}

更多版本

docker.io/splunk/splunk:7.2.6

linux/amd64 docker.io537.14MB2024-07-16 09:46
328

docker.io/splunk/splunk:8.2.4

linux/amd64 docker.io1.93GB2024-08-29 21:27
442

docker.io/splunk/splunk:9.2

linux/amd64 docker.io2.34GB2025-06-20 17:27
121

docker.io/splunk/splunk-operator:2.4.0

linux/amd64 docker.io295.90MB2025-11-05 14:25
11

docker.io/splunk/splunk:9.1.1

linux/amd64 docker.io2.15GB2025-11-05 14:48
12