quay.io/ceph/ceph:v17.2.5 linux/amd64

quay.io/ceph/ceph:v17.2.5 - 国内下载镜像源 浏览次数:5

quay.io/ceph/ceph是Ceph分布式存储系统的容器镜像

源镜像 quay.io/ceph/ceph:v17.2.5
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5
镜像ID sha256:768e01abdf0ba22f4f56c7e0a1a6d92c7e2badf95b93909c73ae72e134dfeb50
镜像TAG v17.2.5
大小 1.31GB
镜像源 quay.io
CMD /bin/bash
启动入口
工作目录
OS/平台 linux/amd64
浏览量 5 次
贡献者
镜像创建 2023-02-09T16:03:29.364634792Z
同步时间 2025-06-20 17:39
更新时间 2025-06-20 20:13
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin container=oci I_AM_IN_A_CONTAINER=1 CEPH_VERSION=quincy CEPH_POINT_RELEASE=-17.2.5 CEPH_DEVEL=false CEPH_REF=quincy OSD_FLAVOR=default
镜像标签
-17.2.5: CEPH_POINT_RELEASE HEAD: GIT_BRANCH True: GIT_CLEAN e150ad9dd6aa1e402d78863e3e960e9007c4f01a: GIT_COMMIT https://github.com/ceph/ceph-container.git: GIT_REPO HEAD: RELEASE x86_64: architecture 2023-02-07T17:57:16: build-date True: ceph centos-stream-container: com.redhat.component https://centos.org/legal/licensing-policy/: com.redhat.license_terms CentOS Stream is a continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux development. This image takes the Red Hat UBI and layers on content from CentOS Stream: description public: distribution-scope 1.27.3: io.buildah.version 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.description CentOS Stream 8: io.k8s.display-name : io.openshift.expose-services base centos centos-stream: io.openshift.tags Guillaume Abrioux <gabrioux@redhat.com>: maintainer centos-stream: name 1054.1675788412: release Provides a CentOS Stream container based on the Red Hat Universal Base Image: summary https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.7-1054.1675788412: url a995512a05037e3b60bbb1bf9fa6e394063131c3: vcs-ref git: vcs-type Red Hat, Inc.: vendor 8: version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5  quay.io/ceph/ceph:v17.2.5

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5  quay.io/ceph/ceph:v17.2.5

Shell快速替换命令

sed -i 's#quay.io/ceph/ceph:v17.2.5#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5  quay.io/ceph/ceph:v17.2.5'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5  quay.io/ceph/ceph:v17.2.5'

镜像构建历史


# 2023-02-10 00:03:29  936.21MB 
/bin/sh -c yum install -y epel-release && yum install -y jq && bash -c '   if [ -n "nfs-ganesha nfs-ganesha-ceph nfs-ganesha-rgw nfs-ganesha-rados-grace nfs-ganesha-rados-urls sssd-client" ]; then     if [[ "${CEPH_VERSION}" == master || "${CEPH_VERSION}" == main ]]; then       curl -s -L "https://shaman.ceph.com/api/repos/nfs-ganesha/next/latest/centos/8/flavors/ceph_main/repo?arch=$(arch)" -o /etc/yum.repos.d/ganesha.repo ;     elif  [[ "${CEPH_VERSION}" == quincy ]]; then       echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://buildlogs.centos.org/centos/\$releasever/storage/\$basearch/nfsganesha-4/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=0" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;     elif [[ "${CEPH_VERSION}" == pacific ]]; then       echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V3.5-stable/$CEPH_VERSION/el\$releasever/\$basearch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;       echo "[ganesha-noarch]" >> /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha-noarch" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V3.5-stable/$CEPH_VERSION/el\$releasever/noarch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;     elif [[ "${CEPH_VERSION}" == octopus ]]; then       echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V3.3-stable/$CEPH_VERSION/el\$releasever/\$basearch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;       echo "[ganesha-noarch]" >> /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha-noarch" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V3.3-stable/$CEPH_VERSION/el\$releasever/noarch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;     elif [[ "${CEPH_VERSION}" == nautilus ]]; then       echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V2.8-stable/$CEPH_VERSION/\$basearch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;     else       echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ;       echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ;       echo "baseurl=https://download.ceph.com/nfs-ganesha/rpm-V2.7-stable/$CEPH_VERSION/\$basearch/" >> /etc/yum.repos.d/ganesha.repo ;       echo "gpgcheck=1" >> /etc/yum.repos.d/ganesha.repo ;       echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo  ;     fi ;   fi ;   if [ -n "tcmu-runner ceph-iscsi python3-rtslib" ]; then     curl -s -L https://shaman.ceph.com/api/repos/tcmu-runner/main/latest/centos/8/repo?arch=$(arch) -o /etc/yum.repos.d/tcmu-runner.repo ;     if [[ "${CEPH_VERSION}" =~ master || "${CEPH_VERSION}" == main ]]; then       curl -s -L https://shaman.ceph.com/api/repos/ceph-iscsi/main/latest/centos/8/repo -o /etc/yum.repos.d/ceph-iscsi.repo ;     elif [[ "${CEPH_VERSION}" =~ nautilus|octopus|pacific|quincy ]]; then       curl -s -L https://download.ceph.com/ceph-iscsi/3/rpm/el8/ceph-iscsi.repo -o /etc/yum.repos.d/ceph-iscsi.repo ;     else       curl -s -L https://download.ceph.com/ceph-iscsi/2/rpm/el8/ceph-iscsi.repo -o /etc/yum.repos.d/ceph-iscsi.repo ;     fi ;   fi' && yum update -y --setopt=install_weak_deps=False && rpm --import 'https://download.ceph.com/keys/release.asc' && if [[ "${CEPH_VERSION}" == nautilus ]]; then   CEPH_MGR_K8SEVENTS="ceph-mgr-k8sevents-17.2.5";   if [[ -n "-17.2.5" ]]; then     CPR=-17.2.5 ;     if [[ ${CPR:1:2} -eq 14 ]] && [[ ${CPR:4:1} -eq 2 ]] && [[ ${CPR:6} -lt 5 ]]; then       CEPH_MGR_K8SEVENTS="" ;     fi ;   fi ; fi && bash -c '   if [[ "${CEPH_VERSION}" =~ master  || "${CEPH_VERSION}" == main ]] || ${CEPH_DEVEL}; then     ARCH=$(arch);     if [[ "${ARCH}" == "aarch64" ]]; then       ARCH="arm64";     fi ;     REPO_URL=$(curl -s "https://shaman.ceph.com/api/search/?project=ceph&distros=centos/8/${ARCH}&flavor=${OSD_FLAVOR}&ref=${CEPH_REF}&sha1=latest" | jq -r .[0].url);     RELEASE_VER=0 ;    if [[ "${OSD_FLAVOR}" == "crimson" ]]; then      CRIMSON_PACKAGES="ceph-crimson-osd-17.2.5";    fi ;  else     RELEASE_VER=1 ;    REPO_URL="http://download.ceph.com/rpm-${CEPH_VERSION}/el8/";   fi &&   rpm -Uvh "$REPO_URL/noarch/ceph-release-1-${RELEASE_VER}.el8.noarch.rpm" &&   if [[ 8 -eq 8 ]]; then     yum install -y dnf-plugins-core ;     yum copr enable -y tchaikov/python-scikit-learn ;     yum copr enable -y tchaikov/python3-asyncssh ;   fi ' && yum install -y --setopt=install_weak_deps=False         ca-certificates         e2fsprogs         ceph-common-17.2.5          ceph-mon-17.2.5          ceph-osd-17.2.5         ceph-mds-17.2.5 cephfs-mirror-17.2.5         rbd-mirror-17.2.5          ceph-mgr-17.2.5 ceph-mgr-cephadm-17.2.5 ceph-mgr-dashboard-17.2.5 ceph-mgr-diskprediction-local-17.2.5 ceph-mgr-k8sevents-17.2.5 ceph-mgr-rook-17.2.5 python3-saml        ceph-grafana-dashboards-17.2.5         kmod         lvm2         gdisk         smartmontools         nvme-cli         libstoragemgmt         systemd-udev         sg3_utils         procps-ng hostname         ceph-radosgw-17.2.5 libradosstriper1-17.2.5         nfs-ganesha nfs-ganesha-ceph nfs-ganesha-rgw nfs-ganesha-rados-grace nfs-ganesha-rados-urls sssd-client         tcmu-runner ceph-iscsi python3-rtslib         attr ceph-fuse-17.2.5 rbd-nbd-17.2.5         ${CRIMSON_PACKAGES}         ceph-immutable-object-cache-17.2.5         python3-scikit-learn         ceph-volume-17.2.5         ceph-exporter-17.2.5 &&     INITIAL_SIZE="$(bash -c 'sz="$(du -sm --exclude=/proc /)" ; echo "${sz%*/}"')" &&     echo 'Postinstall cleanup' &&  (rm -rf "/usr/bin/hyperkube /usr/bin/etcd /usr/bin/systemd-analyze /usr/share/hwdata/{iab.txt,oui.txt} /etc/profile.d/lang.sh" &&    yum clean all &&    rpm -q         ca-certificates         e2fsprogs         ceph-common-17.2.5          ceph-mon-17.2.5          ceph-osd-17.2.5         ceph-mds-17.2.5 cephfs-mirror-17.2.5         rbd-mirror-17.2.5          ceph-mgr-17.2.5 ceph-mgr-cephadm-17.2.5 ceph-mgr-dashboard-17.2.5 ceph-mgr-diskprediction-local-17.2.5 ceph-mgr-k8sevents-17.2.5 ceph-mgr-rook-17.2.5 python3-saml        ceph-grafana-dashboards-17.2.5         kmod         lvm2         gdisk         smartmontools         nvme-cli         libstoragemgmt         systemd-udev         sg3_utils         procps-ng hostname         ceph-radosgw-17.2.5 libradosstriper1-17.2.5         nfs-ganesha nfs-ganesha-ceph nfs-ganesha-rgw nfs-ganesha-rados-grace nfs-ganesha-rados-urls sssd-client         tcmu-runner ceph-iscsi python3-rtslib         attr ceph-fuse-17.2.5 rbd-nbd-17.2.5         ${CRIMSON_PACKAGES}         ceph-immutable-object-cache-17.2.5         python3-scikit-learn         ceph-volume-17.2.5         ceph-exporter-17.2.5 ) && sed -i -e 's/udev_rules = 1/udev_rules = 0/' -e 's/udev_sync = 1/udev_sync = 0/' -e 's/obtain_device_list_from_udev = 1/obtain_device_list_from_udev = 0/' /etc/lvm/lvm.conf && grep -sqo "udev_sync = 0" /etc/lvm/lvm.conf && grep -sqo "udev_rules = 0" /etc/lvm/lvm.conf && grep -sqo "obtain_device_list_from_udev = 0" /etc/lvm/lvm.conf && mkdir -p /var/run/ganesha &&     rm -rf         /etc/{selinux,systemd,udev}         /lib/{lsb,udev}         /tmp/*         /usr/lib{,64}/{locale,udev,dracut}         /usr/share/{doc,info,locale,man}         /usr/share/{bash-completion,pkgconfig/bash-completion.pc}         /var/log/*         /var/tmp/* &&     find  / -xdev -name "*.pyc" -o -name "*.pyo" -exec rm -f {} \; &&     if [ -f /usr/bin/ceph-dencoder ]; then gzip -9 /usr/bin/ceph-dencoder; fi &&     rm -f /usr/lib/ceph/mgr/dashboard/static/AdminLTE-*/plugins/datatables/extensions/TableTools/images/psd/* &&     find /var/log/ -type f -exec truncate -s 0 {} \; &&     FINAL_SIZE="$(bash -c 'sz="$(du -sm --exclude=/proc /)" ; echo "${sz%*/}"')" &&     REMOVED_SIZE=$((INITIAL_SIZE - FINAL_SIZE)) &&     echo "Cleaning process removed ${REMOVED_SIZE}MB" &&     echo "Dropped container size from ${INITIAL_SIZE}MB to ${FINAL_SIZE}MB" &&     rpm -q         ca-certificates         e2fsprogs         ceph-common-17.2.5          ceph-mon-17.2.5          ceph-osd-17.2.5         ceph-mds-17.2.5 cephfs-mirror-17.2.5         rbd-mirror-17.2.5          ceph-mgr-17.2.5 ceph-mgr-cephadm-17.2.5 ceph-mgr-dashboard-17.2.5 ceph-mgr-diskprediction-local-17.2.5 ceph-mgr-k8sevents-17.2.5 ceph-mgr-rook-17.2.5 python3-saml        ceph-grafana-dashboards-17.2.5         kmod         lvm2         gdisk         smartmontools         nvme-cli         libstoragemgmt         systemd-udev         sg3_utils         procps-ng hostname         ceph-radosgw-17.2.5 libradosstriper1-17.2.5         nfs-ganesha nfs-ganesha-ceph nfs-ganesha-rgw nfs-ganesha-rados-grace nfs-ganesha-rados-urls sssd-client         tcmu-runner ceph-iscsi python3-rtslib         attr ceph-fuse-17.2.5 rbd-nbd-17.2.5         ${CRIMSON_PACKAGES}         ceph-immutable-object-cache-17.2.5         python3-scikit-learn         ceph-volume-17.2.5         ceph-exporter-17.2.5 && echo 'Packages verified successfully'
                        
# 2023-02-09 23:59:01  0.00B 
/bin/sh -c #(nop)  ENV OSD_FLAVOR=default
                        
# 2023-02-09 23:59:00  0.00B 
/bin/sh -c #(nop)  ENV CEPH_REF=quincy
                        
# 2023-02-09 23:58:58  0.00B 
/bin/sh -c #(nop)  ENV CEPH_DEVEL=false
                        
# 2023-02-09 23:58:57  0.00B 
/bin/sh -c #(nop)  ENV CEPH_POINT_RELEASE=-17.2.5
                        
# 2023-02-09 23:58:55  0.00B 
/bin/sh -c #(nop)  ENV CEPH_VERSION=quincy
                        
# 2023-02-09 23:58:54  0.00B 
/bin/sh -c #(nop)  LABEL CEPH_POINT_RELEASE=-17.2.5
                        
# 2023-02-09 23:52:19  0.00B 
/bin/sh -c #(nop)  LABEL GIT_CLEAN=True
                        
# 2023-02-09 23:52:18  0.00B 
/bin/sh -c #(nop)  LABEL GIT_COMMIT=e150ad9dd6aa1e402d78863e3e960e9007c4f01a
                        
# 2023-02-09 23:52:16  0.00B 
/bin/sh -c #(nop)  LABEL GIT_BRANCH=HEAD
                        
# 2023-02-09 23:52:15  0.00B 
/bin/sh -c #(nop)  LABEL GIT_REPO=https://github.com/ceph/ceph-container.git
                        
# 2023-02-09 23:52:13  0.00B 
/bin/sh -c #(nop)  LABEL RELEASE=HEAD
                        
# 2023-02-09 23:52:12  0.00B 
/bin/sh -c #(nop)  LABEL ceph=True
                        
# 2023-02-09 23:52:10  0.00B 
/bin/sh -c #(nop)  LABEL maintainer=Guillaume Abrioux <gabrioux@redhat.com>
                        
# 2023-02-09 23:52:09  0.00B 
/bin/sh -c #(nop)  ENV I_AM_IN_A_CONTAINER=1
                        
# 2023-02-09 01:07:10  115.61MB 
/bin/sh -c rpm -ivh --nodeps --replacefiles *.rpm && rm *.rpm     && rpm -e redhat-release     && dnf --setopt=tsflags=nodocs --setopt=install_weak_deps=false -y distro-sync     && dnf remove -y subscription-manager dnf-plugin-subscription-manager    && dnf clean all     && rm -f /etc/yum.repos.d/ubi.repo
                        
# 2023-02-09 01:06:34  51.29MB 
/bin/sh -c dnf download --repofrompath=centos,http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/ --disablerepo=* --enablerepo=centos centos-stream-release centos-stream-repos centos-gpg-keys
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="base centos centos-stream"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="CentOS Stream 8"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL description="CentOS Stream is a continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux development. This image takes the Red Hat UBI and layers on content from CentOS Stream"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides a CentOS Stream container based on the Red Hat Universal Base Image"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.license_terms="https://centos.org/legal/licensing-policy/"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="centos-stream-container"       name="centos-stream"       version="8"
                        
# 2023-02-09 01:06:25  0.00B 
/bin/sh -c #(nop) LABEL maintainer="The CentOS Project"
                        
# 2023-02-08 02:19:58  206.67MB 
/bin/sh -c mv -fZ /tmp/ubi.repo /etc/yum.repos.d/ubi.repo || :
                        
# 2023-02-08 02:19:56  0.00B 
/bin/sh -c rm -f /tmp/tls-ca-bundle.pem
                        
# 2023-02-08 02:19:55  0.00B 
/bin/sh -c rm -f '/etc/yum.repos.d/odcs-1774944-33e98.repo' '/etc/yum.repos.d/gitweb-ab170.repo'
                        
# 2023-02-08 02:19:55  0.00B 
/bin/sh -c #(nop) LABEL "release"="1054.1675788412" "distribution-scope"="public" "vendor"="Red Hat, Inc." "build-date"="2023-02-07T17:57:16" "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="a995512a05037e3b60bbb1bf9fa6e394063131c3" "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." "url"="https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.7-1054.1675788412"
                        
# 2023-02-08 02:19:55  0.00B 
/bin/sh -c #(nop) ADD file:aea94a0fc51a3f59ce8bc116a731ad1bafec665f8f156799899becf79748b86a in /root/buildinfo/Dockerfile-ubi8-8.7-1054.1675788412 
                        
# 2023-02-08 02:19:54  0.00B 
/bin/sh -c #(nop) ADD file:7b906fa72974e479bb704b7b08403659c2782d20365452a64f558d28856b4239 in /root/buildinfo/content_manifests/ubi8-container-8.7-1054.1675788412.json 
                        
# 2023-02-08 02:19:54  0.00B 
/bin/sh -c mkdir -p /var/log/rhsm
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c rm -rf /var/log/*
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) CMD ["/bin/bash"]
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) ENV container oci
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="base rhel8"
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="Red Hat Universal Base Image 8"
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL 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."
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides the latest release of Red Hat Universal Base Image 8."
                        
# 2023-02-08 02:19:53  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-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="ubi8-container"       name="ubi8"       version="8.7"
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) LABEL maintainer="Red Hat, Inc."
                        
# 2023-02-08 02:19:53  0.00B 
/bin/sh -c #(nop) ADD multi:483f4948de79f4c7f9cf7a1eaa72a83908ab9f232d4b1dc3fe04f4ec01570802 in /etc/yum.repos.d/ 
                        
# 2023-02-08 02:19:52  0.00B 
/bin/sh -c #(nop) ADD file:214c1de395c24e4a86ef9a706069ef30a9e804c63f851c37c35655e16fea3ced in /tmp/tls-ca-bundle.pem 
                        
# 2023-02-08 02:19:52  0.00B 
/bin/sh -c mv -f /etc/yum.repos.d/ubi.repo /tmp || :
                        
# 2023-02-08 02:19:51  0.00B 
/bin/sh -c #(nop) ADD file:119f48154b4f7962af9bde1d77c14d12e0522e799ea7cddf3d3acdb86617265a in / 
                        
                    

镜像信息

{
    "Id": "sha256:768e01abdf0ba22f4f56c7e0a1a6d92c7e2badf95b93909c73ae72e134dfeb50",
    "RepoTags": [
        "quay.io/ceph/ceph:v17.2.5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph:v17.2.5"
    ],
    "RepoDigests": [
        "quay.io/ceph/ceph@sha256:34c763383e3323c6bb35f3f2229af9f466518d9db926111277f5e27ed543c427",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/ceph/ceph@sha256:5e229b592e72eed872d57974cba22e6d136ef6df52f90e2d5fbf43b7e4281fed"
    ],
    "Parent": "",
    "Comment": "",
    "Created": "2023-02-09T16:03:29.364634792Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "20.10.12",
    "Author": "",
    "Config": {
        "Hostname": "3d522ab66827",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "container=oci",
            "I_AM_IN_A_CONTAINER=1",
            "CEPH_VERSION=quincy",
            "CEPH_POINT_RELEASE=-17.2.5",
            "CEPH_DEVEL=false",
            "CEPH_REF=quincy",
            "OSD_FLAVOR=default"
        ],
        "Cmd": [
            "/bin/bash"
        ],
        "Image": "sha256:bb20566fe6b171ec34e4f1413ab2b915b3093343bf96ca96163f1a53b87a27e1",
        "Volumes": {},
        "WorkingDir": "",
        "Entrypoint": [],
        "OnBuild": [],
        "Labels": {
            "CEPH_POINT_RELEASE": "-17.2.5",
            "GIT_BRANCH": "HEAD",
            "GIT_CLEAN": "True",
            "GIT_COMMIT": "e150ad9dd6aa1e402d78863e3e960e9007c4f01a",
            "GIT_REPO": "https://github.com/ceph/ceph-container.git",
            "RELEASE": "HEAD",
            "architecture": "x86_64",
            "build-date": "2023-02-07T17:57:16",
            "ceph": "True",
            "com.redhat.component": "centos-stream-container",
            "com.redhat.license_terms": "https://centos.org/legal/licensing-policy/",
            "description": "CentOS Stream is a continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux development. This image takes the Red Hat UBI and layers on content from CentOS Stream",
            "distribution-scope": "public",
            "io.buildah.version": "1.27.3",
            "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": "CentOS Stream 8",
            "io.openshift.expose-services": "",
            "io.openshift.tags": "base centos centos-stream",
            "maintainer": "Guillaume Abrioux \u003cgabrioux@redhat.com\u003e",
            "name": "centos-stream",
            "release": "1054.1675788412",
            "summary": "Provides a CentOS Stream container based on the Red Hat Universal Base Image",
            "url": "https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.7-1054.1675788412",
            "vcs-ref": "a995512a05037e3b60bbb1bf9fa6e394063131c3",
            "vcs-type": "git",
            "vendor": "Red Hat, Inc.",
            "version": "8"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1309779289,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/04cb6fc1948fa1ae96720d4331ed0723365cfb7c4c915815af8513a23712e109/diff:/var/lib/docker/overlay2/ce329525e1b91ddec04cfb3246f69b10b87defc96bdc89b200e57e4f56af2a9f/diff:/var/lib/docker/overlay2/89c68517135b4ae11b7bdbf721fef073dce2b08e37e8e1be710c0b12cd65b9d9/diff",
            "MergedDir": "/var/lib/docker/overlay2/486735f46e75c43297252e9bc290158cf6f14e1170047a34d67480c2dd679add/merged",
            "UpperDir": "/var/lib/docker/overlay2/486735f46e75c43297252e9bc290158cf6f14e1170047a34d67480c2dd679add/diff",
            "WorkDir": "/var/lib/docker/overlay2/486735f46e75c43297252e9bc290158cf6f14e1170047a34d67480c2dd679add/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:4ab945fc3fa986b14b14d286b8929debfbfdb187af674e7288cff3d324f75985",
            "sha256:2f6660cbb8dd87812f4079feff47b8771b1b793b67d7a9b733a3ef3f21a5fea1",
            "sha256:05232213bfcfda1038eca14e1b648de1ea307e075757858ff1b247b7c79ede88",
            "sha256:6f140845a66f7b79986380b9c852b488139c7aa5d902a854e691d9bdd246b38b"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-06-20T17:38:46.626161073+08:00"
    }
}

更多版本

quay.io/ceph/ceph:v18.2.2

linux/amd64 quay.io1.25GB2024-06-25 12:40
490

quay.io/ceph/ceph:v18.2.4

linux/amd64 quay.io1.22GB2024-08-08 15:54
623

quay.io/ceph/ceph:v19

linux/amd64 quay.io1.28GB2024-09-05 16:45
463

quay.io/ceph/ceph:v16.2.9

linux/amd64 quay.io1.17GB2024-09-08 23:40
280

quay.io/ceph/ceph:v17

linux/amd64 quay.io1.26GB2024-09-11 11:13
364

quay.io/ceph/ceph:v18.2.2

linux/arm64 quay.io1.22GB2024-09-19 01:58
278

quay.io/ceph/ceph:v15.2.13-20210526

linux/amd64 quay.io1.03GB2024-09-19 21:08
176

quay.io/ceph/ceph:v15.2.17

linux/amd64 quay.io1.20GB2024-09-20 07:36
330

quay.io/ceph/ceph:v15

linux/amd64 quay.io1.20GB2024-10-08 09:34
200

quay.io/ceph/ceph-grafana:6.7.4

linux/amd64 quay.io486.18MB2024-10-08 09:35
287

quay.io/ceph/ceph:v14.2.22

linux/amd64 quay.io885.28MB2024-10-14 11:05
261

quay.io/ceph/ceph:v19.2.0

linux/amd64 quay.io1.28GB2024-12-19 11:36
253

quay.io/ceph/ceph:v18.2.4

linux/arm64 quay.io1.19GB2025-01-02 16:30
112

quay.io/ceph/ceph:v19.2.0

linux/arm64 quay.io1.24GB2025-01-02 16:32
125

quay.io/ceph/ceph:v18

linux/amd64 quay.io1.22GB2025-01-10 20:23
131

quay.io/ceph/ceph:v19.2.1

linux/amd64 quay.io1.30GB2025-02-11 14:28
164

quay.io/ceph/ceph:v19.2.1

linux/arm64 quay.io1.27GB2025-02-11 14:36
116

quay.io/ceph/ceph:v18.2.1

linux/amd64 quay.io1.26GB2025-03-16 13:59
137

quay.io/ceph/ceph:v19.2.2

linux/amd64 quay.io1.31GB2025-04-22 15:40
110

quay.io/ceph/ceph:v17.2.6

linux/amd64 quay.io1.26GB2025-05-09 20:24
65

quay.io/ceph/ceph:v17.2.3

linux/amd64 quay.io1.34GB2025-05-11 15:42
54

quay.io/ceph/ceph:v17.2.5

linux/amd64 quay.io1.31GB2025-06-20 17:39
4