docker.io/gpustack/gpustack:v0.7.1-cpu linux/amd64

docker.io/gpustack/gpustack:v0.7.1-cpu - 国内下载镜像源 浏览次数:13

这是一个名为 docker.io/gpustack/gpustack 的 Docker 容器镜像。 该镜像的具体描述信息需要参考其官方文档或仓库页面才能获得。 没有更多信息可以提供。

源镜像 docker.io/gpustack/gpustack:v0.7.1-cpu
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu
镜像ID sha256:1de73dfdade7f98177ca607d225d4b204437264c341924d5ca67ea2ddb630fa3
镜像TAG v0.7.1-cpu
大小 13.63GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 tini -- gpustack start
工作目录
OS/平台 linux/amd64
浏览量 13 次
贡献者
镜像创建 2025-08-22T08:31:07.876202475Z
同步时间 2025-10-11 00:38
更新时间 2025-10-12 01:38
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DEBIAN_FRONTEND=noninteractive LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 PYTHON_VERSION=3.11 PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_ROOT_USER_ACTION=ignore LOCAL_VENVS=/opt/venvs USE_EMOJI=false PIPX_HOME=/var/lib/gpustack/pipx PIPX_BIN_DIR=/var/lib/gpustack/bin
镜像标签
2025-08-22T08:25:50.247Z: org.opencontainers.image.created Simple, scalable AI model deployment on GPU clusters: org.opencontainers.image.description Apache-2.0: org.opencontainers.image.licenses ubuntu: org.opencontainers.image.ref.name a6da07d6aef117adcfd43698dd71caae09621eef: org.opencontainers.image.revision https://github.com/gpustack/gpustack: org.opencontainers.image.source gpustack: org.opencontainers.image.title https://github.com/gpustack/gpustack: org.opencontainers.image.url v0.7.1-cpu: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu  docker.io/gpustack/gpustack:v0.7.1-cpu

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu  docker.io/gpustack/gpustack:v0.7.1-cpu

Shell快速替换命令

sed -i 's#gpustack/gpustack:v0.7.1-cpu#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu  docker.io/gpustack/gpustack:v0.7.1-cpu'

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-08-22 16:31:07  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["tini" "--" "gpustack" "start"]
                        
# 2025-08-22 16:31:07  0.00B 设置环境变量 PIPX_HOME PIPX_BIN_DIR
ENV PIPX_HOME=/var/lib/gpustack/pipx PIPX_BIN_DIR=/var/lib/gpustack/bin
                        
# 2025-08-22 16:31:07  997.04MB 执行命令并创建新的镜像层
RUN |4 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 PYTHON_VERSION=3.11 /bin/bash -eo pipefail -c     # Vox-Box

    # Get version of Vox-Box from GPUStack
    VERSION=$(pip freeze | grep vox_box== | head -n 1 | cut -d'=' -f3)

    # Pre process
    # - Create virtual environment to place vox-box
    python -m venv --system-site-packages ${LOCAL_VENVS}/vox-box
    # - Prepare environment
    source ${LOCAL_VENVS}/vox-box/bin/activate

    # Reinstall Vox-Box,
    # as we create a virtual environment which inherits system site packages,
    # so we need to reinstall Vox-Box to ensure it is installed in the virtual environment.
    # We also lock the transformers version here to fix https://github.com/gpustack/gpustack/pull/2473.
    cat <<EOT >/tmp/requirements.txt
transformers==4.51.3
vox-box==${VERSION}
EOT
    pip install --force-reinstall --no-dependencies -r /tmp/requirements.txt \
        && ln -vsf ${LOCAL_VENVS}/vox-box/bin/vox-box /usr/local/bin/vox-box

    if [[ "${TARGETARCH}" == "amd64" ]]; then
        # Since no compatible version exists for arm64, triton installation is restricted to amd64 architectures,
        # aligning with pyproject.toml constraints.
        pip install --force-reinstall --no-dependencies triton==3.3.1
    fi

    # Download tools
    # - Download dac weights used by audio models like Dia.
    python -m dac download

    # Review
    pip freeze

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/*
 # buildkit
                        
# 2025-08-22 16:30:40  10.89GB 执行命令并创建新的镜像层
RUN |4 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 PYTHON_VERSION=3.11 /bin/bash -eo pipefail -c     # GPUStack

    # Build GPUStack
    cd /workspace/gpustack \
        && git config --global --add safe.directory /workspace/gpustack \
        && make build

    # Install GPUStack.
    # FIXME: Do not support pure-cpu vLLM.
    WHEEL_PACKAGE="$(ls /workspace/gpustack/dist/*.whl)[audio]";
    pip install ${WHEEL_PACKAGE}

    # Download tools
    gpustack download-tools --device cpu
    tree -hs "$(pip show gpustack | grep Location: | head -n 1 | cut -d" " -f 2)/gpustack/third_party"

    # Set up environment
    mkdir -p /var/lib/gpustack \
        && chmod -R 0755 /var/lib/gpustack

    # Review
    pip freeze

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/* \
        && rm -rf /workspace/gpustack/dist
 # buildkit
                        
# 2025-08-20 21:05:19  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-08-20 21:05:19  0.00B 定义构建参数
ARG TARGETOS=linux
                        
# 2025-08-20 21:05:19  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-08-20 21:05:19  0.00B 
SHELL [/bin/bash -eo pipefail -c]
                        
# 2025-08-20 21:05:19  0.00B 设置环境变量 LOCAL_VENVS USE_EMOJI
ENV LOCAL_VENVS=/opt/venvs USE_EMOJI=false
                        
# 2025-08-20 21:05:19  99.03MB 执行命令并创建新的镜像层
RUN |4 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 PYTHON_VERSION=3.11 /bin/bash -eo pipefail -c     # Buildkit

    cat <<EOT >/tmp/requirements.txt
build
cmake<4
ninja<1.11
setuptools<80
setuptools-scm
packaging<25
wheel
pybind11
Cython
psutil==7.0.0
pipx==1.7.1
EOT
    pip install -r /tmp/requirements.txt

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/*
 # buildkit
                        
# 2025-08-20 21:05:14  0.00B 设置环境变量 PIP_NO_CACHE_DIR PIP_DISABLE_PIP_VERSION_CHECK PIP_ROOT_USER_ACTION
ENV PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_ROOT_USER_ACTION=ignore
                        
# 2025-08-20 21:05:14  108.95MB 执行命令并创建新的镜像层
RUN |4 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 PYTHON_VERSION=3.11 /bin/bash -eo pipefail -c     # Python

    if (( $(echo "$(python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2) == ${PYTHON_VERSION}" | bc -l) )); then
        echo "Skipping Python upgrade for ${PYTHON_VERSION}..."
        if [[ -z "$(ldconfig -v 2>/dev/null | grep libpython${PYTHON_VERSION})" ]]; then
            PYTHON_LIB_PREFIX=$(python3 -c "import sys; print(sys.base_prefix);")
            echo "${PYTHON_LIB_PREFIX}/lib" >> /etc/ld.so.conf.d/python3.conf
            echo "${PYTHON_LIB_PREFIX}/lib64" >> /etc/ld.so.conf.d/python3.conf
        fi
        exit 0
    fi

    # Add deadsnakes PPA for Python versions
    for i in 1 2 3; do
        add-apt-repository -y ppa:deadsnakes/ppa && break || { echo "Attempt $i failed, retrying in 5s..."; sleep 5; }
    done
    apt-get update -y

    # Install
    apt-get install -y --no-install-recommends \
        python${PYTHON_VERSION} \
        python${PYTHON_VERSION}-dev \
        python${PYTHON_VERSION}-venv \
        python${PYTHON_VERSION}-distutils \
        python${PYTHON_VERSION}-lib2to3 \
        python${PYTHON_VERSION}-gdbm \
        python${PYTHON_VERSION}-tk \
        libibverbs-dev

    # Update alternatives
    if [[ -f /etc/alternatives/python3 ]]; then update-alternatives --remove-all python3; fi; update-alternatives --install /usr/bin/python3 python3 /usr/bin/python${PYTHON_VERSION} 1
    if [[ -f /etc/alternatives/python ]]; then update-alternatives --remove-all python; fi; update-alternatives --install /usr/bin/python python /usr/bin/python${PYTHON_VERSION} 1
    curl -sS "https://bootstrap.pypa.io/get-pip.py" | python${PYTHON_VERSION}
    if [[ -f /etc/alternatives/2to3 ]]; then update-alternatives --remove-all 2to3; fi; update-alternatives --install /usr/bin/2to3 2to3 /usr/bin/2to3${PYTHON_VERSION} 1 || true
    if [[ -f /etc/alternatives/pydoc3 ]]; then update-alternatives --remove-all pydoc3; fi; update-alternatives --install /usr/bin/pydoc3 pydoc3 /usr/bin/pydoc${PYTHON_VERSION} 1 || true
    if [[ -f /etc/alternatives/idle3 ]]; then update-alternatives --remove-all idle3; fi; update-alternatives --install /usr/bin/idle3 idle3 /usr/bin/idle${PYTHON_VERSION} 1 || true
    if [[ -f /etc/alternatives/python3-config ]]; then update-alternatives --remove-all python3-config; fi; update-alternatives --install /usr/bin/python3-config python3-config /usr/bin/python${PYTHON_VERSION}-config 1 || true

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/* \
        && rm -rf /var/cache/apt
 # buildkit
                        
# 2025-08-20 21:04:36  0.00B 设置环境变量 PYTHON_VERSION
ENV PYTHON_VERSION=3.11
                        
# 2025-08-20 21:04:36  0.00B 定义构建参数
ARG PYTHON_VERSION=3.11
                        
# 2025-08-20 21:04:36  884.42MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 /bin/bash -eo pipefail -c     # C buildkit

    # Install
    apt-get install -y --no-install-recommends \
        make ninja-build pkg-config ccache
    curl --retry 3 --retry-connrefused -fL "https://github.com/Kitware/CMake/releases/download/v3.31.7/cmake-3.31.7-linux-$(uname -m).tar.gz" | tar -zx -C /usr --strip-components 1

    # Install dependencies
    apt-get install -y --no-install-recommends \
        perl-openssl-defaults perl yasm \
        zlib1g zlib1g-dev libbz2-dev libffi-dev libgdbm-dev libgdbm-compat-dev \
        openssl libssl-dev libsqlite3-dev lcov libomp-dev \
        libblas-dev liblapack-dev libopenblas-dev libblas3 liblapack3 libhdf5-dev \
        libxml2 libxslt1-dev libgl1-mesa-glx libgmpxx4ldbl \
        libncurses5-dev libreadline6-dev libsqlite3-dev \
        liblzma-dev lzma lzma-dev tk-dev uuid-dev libmpdec-dev \
        ffmpeg libjpeg-dev libpng-dev libtiff-dev libwebp-dev \
        libnuma-dev libjemalloc-dev

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/* \
        && rm -rf /var/cache/apt
 # buildkit
                        
# 2025-08-20 21:10:07  0.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 /bin/bash -eo pipefail -c     # GCC

    # Upgrade GCC if the Ubuntu version is lower than 21.04.
    source /etc/os-release
    if (( $(echo "${VERSION_ID} >= 21.04" | bc -l) )); then
        echo "Skipping GCC upgrade for ${VERSION_ID}..."
        exit 0
    fi

    # Install
    apt-get install -y --no-install-recommends \
        gcc-11 g++-11 gfortran-11 gfortran

    # Update alternatives
    if [[ -f /etc/alternatives/gcov-dump ]]; then update-alternatives --remove-all gcov-dump; fi; update-alternatives --install /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-11 10
    if [[ -f /etc/alternatives/lto-dump ]]; then update-alternatives --remove-all lto-dump; fi; update-alternatives --install /usr/bin/lto-dump lto-dump /usr/bin/lto-dump-11 10
    if [[ -f /etc/alternatives/gcov ]]; then update-alternatives --remove-all gcov; fi; update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-11 10
    if [[ -f /etc/alternatives/gcc ]]; then update-alternatives --remove-all gcc; fi; update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 10
    if [[ -f /etc/alternatives/gcc-nm ]]; then update-alternatives --remove-all gcc-nm; fi; update-alternatives --install /usr/bin/gcc-nm gcc-nm /usr/bin/gcc-nm-11 10
    if [[ -f /etc/alternatives/cpp ]]; then update-alternatives --remove-all cpp; fi; update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-11 10
    if [[ -f /etc/alternatives/g++ ]]; then update-alternatives --remove-all g++; fi; update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 10
    if [[ -f /etc/alternatives/gcc-ar ]]; then update-alternatives --remove-all gcc-ar; fi; update-alternatives --install /usr/bin/gcc-ar gcc-ar /usr/bin/gcc-ar-11 10
    if [[ -f /etc/alternatives/gcov-tool ]]; then update-alternatives --remove-all gcov-tool; fi; update-alternatives --install /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-11 10
    if [[ -f /etc/alternatives/gcc-ranlib ]]; then update-alternatives --remove-all gcc-ranlib; fi; update-alternatives --install /usr/bin/gcc-ranlib gcc-ranlib /usr/bin/gcc-ranlib-11 10
    if [[ -f /etc/alternatives/gfortran ]]; then update-alternatives --remove-all gfortran; fi; update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-11 10

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/* \
        && rm -rf /var/cache/apt
 # buildkit
                        
# 2025-08-20 21:04:08  564.85MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 TARGETOS=linux TARGETARCH=amd64 /bin/bash -eo pipefail -c     # Tools

    # Refresh
    apt-get update -y && apt-get install -y --no-install-recommends \
        software-properties-common apt-transport-https \
        ca-certificates gnupg2 lsb-release gnupg-agent \
      && apt-get update -y \
      && add-apt-repository -y ppa:ubuntu-toolchain-r/test \
      && apt-get update -y

    # Install
    apt-get install -y --no-install-recommends \
        ca-certificates build-essential binutils bash openssl \
        curl wget aria2 \
        git git-lfs \
        unzip xz-utils \
        tzdata locales \
        iproute2 iputils-ping ifstat net-tools dnsutils pciutils ipmitool \
        procps sysstat htop \
        tini vim jq bc tree

    # Update locale
    localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8

    # Update timezone
    rm -f /etc/localtime \
        && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
        && echo "Asia/Shanghai" > /etc/timezone \
        && dpkg-reconfigure --frontend noninteractive tzdata

    # Cleanup
    rm -rf /var/tmp/* \
        && rm -rf /tmp/* \
        && rm -rf /var/cache/apt
 # buildkit
                        
# 2025-08-20 21:04:08  0.00B 设置环境变量 DEBIAN_FRONTEND LANG LANGUAGE LC_ALL
ENV DEBIAN_FRONTEND=noninteractive LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETOS=linux
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-08-20 21:04:08  0.00B 设置环境变量 DEBIAN_FRONTEND LANG LANGUAGE LC_ALL
ENV DEBIAN_FRONTEND=noninteractive LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETOS=linux
                        
# 2025-08-20 21:04:08  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-08-20 21:04:08  0.00B 
SHELL [/bin/bash -eo pipefail -c]
                        
# 2025-07-30 13:32:14  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-07-30 13:32:14  77.87MB 
/bin/sh -c #(nop) ADD file:598bb7ba54e5a576778e9ebe1f4e514188812bea30c08d00446f8d04c37053e6 in / 
                        
# 2025-07-30 13:32:11  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=22.04
                        
# 2025-07-30 13:32:11  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-07-30 13:32:11  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-07-30 13:32:11  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:1de73dfdade7f98177ca607d225d4b204437264c341924d5ca67ea2ddb630fa3",
    "RepoTags": [
        "gpustack/gpustack:v0.7.1-cpu",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack:v0.7.1-cpu"
    ],
    "RepoDigests": [
        "gpustack/gpustack@sha256:d90ff89b2ad43817f65cbe5463250bfcda44e7c4ed860ad14d3844acc3b47627",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/gpustack/gpustack@sha256:4e766717c84abe089d7106ee6cc335443412265a2adc9b78ea3c9edcf1dc1d47"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-22T08:31:07.876202475Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "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",
            "DEBIAN_FRONTEND=noninteractive",
            "LANG=en_US.UTF-8",
            "LANGUAGE=en_US:en",
            "LC_ALL=en_US.UTF-8",
            "PYTHON_VERSION=3.11",
            "PIP_NO_CACHE_DIR=1",
            "PIP_DISABLE_PIP_VERSION_CHECK=1",
            "PIP_ROOT_USER_ACTION=ignore",
            "LOCAL_VENVS=/opt/venvs",
            "USE_EMOJI=false",
            "PIPX_HOME=/var/lib/gpustack/pipx",
            "PIPX_BIN_DIR=/var/lib/gpustack/bin"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "tini",
            "--",
            "gpustack",
            "start"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2025-08-22T08:25:50.247Z",
            "org.opencontainers.image.description": "Simple, scalable AI model deployment on GPU clusters",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.revision": "a6da07d6aef117adcfd43698dd71caae09621eef",
            "org.opencontainers.image.source": "https://github.com/gpustack/gpustack",
            "org.opencontainers.image.title": "gpustack",
            "org.opencontainers.image.url": "https://github.com/gpustack/gpustack",
            "org.opencontainers.image.version": "v0.7.1-cpu"
        },
        "Shell": [
            "/bin/bash",
            "-eo",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 13625667588,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ba8d74a55437fef4cf9619207a25a9092888c24c780c68b88e54c860826e512d/diff:/var/lib/docker/overlay2/94255d0e7ad298303195c509d1633326425ddd3f0a5ace7a6f76f37e7fa2b25b/diff:/var/lib/docker/overlay2/5beb3ddb661b92236a18baf530930a4b5288298793aa76d2c999bee34c7d3a49/diff:/var/lib/docker/overlay2/9bba75f781f2b95a127d4847428a5d565d3e434cbcb2be7608d0f5fb8b35516c/diff:/var/lib/docker/overlay2/9cb91b2beed565fb5bb34a3fafa334f5c2a0e5c9238a7b36a619378b76b64266/diff:/var/lib/docker/overlay2/cc8586a8ad5a342b3a41a2c2d0a45fff63a38ee8382d1fbae752132575aeaf65/diff:/var/lib/docker/overlay2/0d519e14012657202adc3adc6483d19c3105cf3a65cb78f4121ba16eac82d542/diff",
            "MergedDir": "/var/lib/docker/overlay2/b351402be46750ad357ca2da2a86d215465fd8a9cb3f3312933584b21101f9fe/merged",
            "UpperDir": "/var/lib/docker/overlay2/b351402be46750ad357ca2da2a86d215465fd8a9cb3f3312933584b21101f9fe/diff",
            "WorkDir": "/var/lib/docker/overlay2/b351402be46750ad357ca2da2a86d215465fd8a9cb3f3312933584b21101f9fe/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:90a2bf02e851326fc70d05470553ed33e578342d6e06bfa0cfaf331c4079b7e4",
            "sha256:7cf3ca1150aca33eafd6c901846e80c1e4e583ebdf94036f7848da2f1784fe52",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:9a87587460951aaf2927fde323aa40938f819bea7869e69e24e4fcbd020b1f6a",
            "sha256:6e0283aa123fdc8a34fd327175e76713ddf3bfff8c5b8a06d85831480f987d37",
            "sha256:1e564130147a3c3d9485bad7f6c7169289cc896b928598f47a3ccd83692b031e",
            "sha256:4ef6d5e3fa4ad65524fdec7c352763d54906796023d7375095eb6a070b23796e",
            "sha256:1f474b9d51c8d4a12cb6dc4eb8814ad5df8631058e6c25d09cf2ca909a17f380"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-11T00:23:53.254259174+08:00"
    }
}

更多版本

docker.io/gpustack/gpustack:latest

linux/amd64 docker.io13.39GB2024-12-17 02:56
547

docker.io/gpustack/gpustack:main

linux/arm64 docker.io6.16GB2025-01-10 17:09
326

docker.io/gpustack/gpustack:main-cpu

linux/arm64 docker.io3.07GB2025-01-10 17:15
300

docker.io/gpustack/gpustack:main

linux/amd64 docker.io13.47GB2025-01-11 01:06
229

docker.io/gpustack/gpustack:main-cpu

linux/amd64 docker.io8.64GB2025-01-11 01:23
305

docker.io/gpustack/gpustack:main-npu

linux/amd64 docker.io11.31GB2025-01-11 01:38
650

docker.io/gpustack/gpustack:main-npu

linux/arm64 docker.io11.16GB2025-01-11 01:55
205

docker.io/gpustack/gpustack:v0.5.0-npu

linux/arm64 docker.io10.77GB2025-02-09 00:59
397

docker.io/gpustack/gpustack:v0.5.0-npu

linux/amd64 docker.io10.94GB2025-02-09 01:29
342

docker.io/gpustack/gpustack:0.5.1rc1

linux/amd64 docker.io13.92GB2025-02-13 00:33
305

docker.io/gpustack/gpustack:latest-rocm

linux/amd64 docker.io51.40GB2025-03-14 02:47
338

docker.io/gpustack/gpustack:v0.5.1

linux/amd64 docker.io13.91GB2025-04-08 00:26
216

docker.io/gpustack/gpustack:0.6.0rc1

linux/amd64 docker.io15.64GB2025-04-13 03:11
232

docker.io/gpustack/gpustack:main-rocm

linux/amd64 docker.io52.53GB2025-04-19 01:08
239

docker.io/gpustack/gpustack:v0.6.0-npu

linux/arm64 docker.io15.47GB2025-04-27 15:06
342

docker.io/gpustack/gpustack:latest-npu

linux/arm64 docker.io15.47GB2025-04-28 09:54
250

docker.io/gpustack/gpustack:v0.6

linux/amd64 docker.io16.00GB2025-04-29 00:53
152

docker.io/gpustack/gpustack:v0.6.0

linux/amd64 docker.io16.00GB2025-04-30 13:22
204

docker.io/gpustack/gpustack:latest-cuda12.8

linux/amd64 docker.io16.41GB2025-05-05 00:48
221

docker.io/gpustack/gpustack:v0.6.1-npu

linux/arm64 docker.io17.16GB2025-05-20 00:35
289

docker.io/gpustack/gpustack:v0.6.1

linux/amd64 docker.io17.04GB2025-05-22 01:55
208

docker.io/gpustack/gpustack:v0.6.1-npu-310p

linux/arm64 docker.io17.73GB2025-06-05 02:53
338

docker.io/gpustack/gpustack:latest

linux/arm64 docker.io9.35GB2025-06-06 10:39
225

docker.io/gpustack/gpustack:latest-cpu

linux/arm64 docker.io5.09GB2025-06-06 11:16
190

docker.io/gpustack/gpustack:v0.6-dev

linux/arm64 docker.io8.64GB2025-06-06 15:24
120

docker.io/gpustack/gpustack:v0.6.2rc1-npu

linux/amd64 docker.io17.77GB2025-06-06 15:49
268

docker.io/gpustack/gpustack:v0.6.2rc1-npu

linux/arm64 docker.io19.68GB2025-06-07 00:27
354

docker.io/gpustack/gpustack:v0.6-dev-npu

linux/arm64 docker.io19.68GB2025-06-07 00:33
235

docker.io/gpustack/gpustack:v0.6.2-npu

linux/arm64 docker.io19.15GB2025-06-12 03:46
281

docker.io/gpustack/gpustack:v0.6.2-npu

linux/amd64 docker.io20.91GB2025-06-12 04:36
363

docker.io/gpustack/gpustack:latest-cpu

linux/amd64 docker.io10.52GB2025-06-14 04:13
178

docker.io/gpustack/gpustack:v0.6.2

linux/amd64 docker.io16.44GB2025-06-14 04:40
294

docker.io/gpustack/gpustack:v0.6.2-cpu

linux/arm64 docker.io4.94GB2025-06-14 09:47
123

docker.io/gpustack/gpustack:v0.6.2-corex

linux/amd64 docker.io22.03GB2025-07-12 01:50
117

docker.io/gpustack/gpustack:v0.7.0

linux/amd64 docker.io18.41GB2025-07-29 03:10
219

docker.io/gpustack/gpustack:main-cuda12.8

linux/amd64 docker.io20.66GB2025-07-29 04:36
116

docker.io/gpustack/gpustack:v0.7.0

linux/arm64 docker.io8.81GB2025-07-29 16:54
211

docker.io/gpustack/gpustack:v0.7.0-npu

linux/arm64 docker.io19.10GB2025-07-30 02:32
255

docker.io/gpustack/gpustack:v0.7.0-corex

linux/amd64 docker.io22.05GB2025-08-14 02:49
82

docker.io/gpustack/gpustack:v0.7.0-cuda12.8

linux/amd64 docker.io20.66GB2025-08-18 02:45
107

docker.io/gpustack/gpustack:v0.7.1-npu

linux/amd64 docker.io20.62GB2025-08-27 03:23
125

docker.io/gpustack/gpustack:v0.7.1-npu

linux/arm64 docker.io19.71GB2025-08-27 03:42
211

docker.io/gpustack/gpustack:v0.7.1

linux/amd64 docker.io24.14GB2025-08-27 05:20
186

docker.io/gpustack/gpustack:v0.7.1-cuda12.8

linux/amd64 docker.io27.43GB2025-08-27 05:46
170

docker.io/gpustack/gpustack:v0.7.1

linux/arm64 docker.io13.33GB2025-08-27 06:16
151

docker.io/gpustack/gpustack:v0.7.1-rocm

linux/amd64 docker.io55.51GB2025-08-28 03:25
117

docker.io/gpustack/gpustack:latest-npu-310p

linux/arm64 docker.io20.10GB2025-08-28 03:52
178

docker.io/gpustack/gpustack:main-dcu

linux/amd64 docker.io35.98GB2025-09-23 01:05
67

docker.io/gpustack/gpustack:v0.7.1-cpu

linux/amd64 docker.io13.63GB2025-10-11 00:38
12