ghcr.io/home-assistant/home-assistant:2026.1.3 linux/amd64

ghcr.io/home-assistant/home-assistant:2026.1.3 - 国内下载镜像源 浏览次数:13 安全受验证的发布者-Home Assistant
🏠️‍💡️ 该docker容器镜像是 Home Assistant 的官方镜像,用于运行智能家居自动化平台。Home Assistant 是一个开源的、基于 Python 的智能家居自动化系统,可以控制和整合各种智能设备,例如照明、空调、音频设备等。 镜像描述:/Home Assistant - Official Docker Image for Home Automation .

Home Assistant 是一个开源的智能家居自动化平台,用于控制和整合各种智能设备。该镜像提供了 Home Assistant 的官方运行环境,可以轻松地在多个平台上部署和使用。

Note: The above response is in Chinese, and the HTML tag does not contain any style information.
源镜像 ghcr.io/home-assistant/home-assistant:2026.1.3
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3
镜像ID sha256:9edb3a466ef31d035d02a0e5f744477f2b721afd633909bcb84b08a4f402a5d1
镜像TAG 2026.1.3
大小 2.27GB
镜像源 ghcr.io
CMD
启动入口 /init
工作目录 /config
OS/平台 linux/amd64
浏览量 13 次
贡献者
镜像创建 2026-01-23T20:20:24.813238817Z
同步时间 2026-01-27 16:31
更新时间 2026-01-27 19:41
环境变量
PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LANG=C.UTF-8 S6_BEHAVIOUR_IF_STAGE2_FAILS=2 S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_CMD_WAIT_FOR_SERVICES=1 S6_SERVICES_READYTIME=50 UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/ S6_SERVICES_GRACETIME=240000 UV_SYSTEM_PYTHON=true UV_NO_CACHE=true
镜像标签
amd64: io.hass.arch amd64: io.hass.base.arch ghcr.io/home-assistant/amd64-base:3.22: io.hass.base.image python: io.hass.base.name 2025.12.1: io.hass.base.version core: io.hass.type 2026.1.3: io.hass.version The Home Assistant Authors: org.opencontainers.image.authors 2026-01-23 20:18:54+00:00: org.opencontainers.image.created Open-source home automation platform running on Python 3: org.opencontainers.image.description https://www.home-assistant.io/docs/: org.opencontainers.image.documentation Apache-2.0: org.opencontainers.image.licenses https://github.com/home-assistant/core: org.opencontainers.image.source Home Assistant: org.opencontainers.image.title https://www.home-assistant.io/: org.opencontainers.image.url 2026.1.3: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3  ghcr.io/home-assistant/home-assistant:2026.1.3

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3  ghcr.io/home-assistant/home-assistant:2026.1.3

Shell快速替换命令

sed -i 's#ghcr.io/home-assistant/home-assistant:2026.1.3#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3  ghcr.io/home-assistant/home-assistant:2026.1.3'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3  ghcr.io/home-assistant/home-assistant:2026.1.3'

镜像构建历史


# 2026-01-24 04:20:24  0.00B 设置工作目录为/config
WORKDIR /config
                        
# 2026-01-24 04:20:24  60.46MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c uv pip install         -e ./homeassistant     && python3 -m compileall         homeassistant/homeassistant # buildkit
                        
# 2026-01-24 04:20:00  175.72MB 复制新文件或目录到容器中
COPY . homeassistant/ # buildkit
                        
# 2026-01-24 04:19:54  1.33GB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c if ls homeassistant/home_assistant_*.whl 1> /dev/null 2>&1; then         uv pip install homeassistant/home_assistant_*.whl;     fi     && uv pip install         --no-build         -r homeassistant/requirements_all.txt # buildkit
                        
# 2026-01-24 04:19:20  64.44KB 复制新文件或目录到容器中
COPY requirements_all.txt home_assistant_frontend-* home_assistant_intents-* homeassistant/ # buildkit
                        
# 2026-01-24 04:19:19  316.87MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c uv pip install         --no-build         -r homeassistant/requirements.txt # buildkit
                        
# 2026-01-24 04:19:10  6.61KB 复制新文件或目录到容器中
COPY homeassistant/package_constraints.txt homeassistant/homeassistant/ # buildkit
                        
# 2026-01-24 04:19:10  1.25KB 复制新文件或目录到容器中
COPY requirements.txt homeassistant/ # buildkit
                        
# 2026-01-24 04:19:10  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2026-01-24 04:19:10  55.55MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c go2rtc --version     && pip3 install uv==0.9.17 # buildkit
                        
# 2026-01-24 04:19:09  18.65MB 复制新文件或目录到容器中
COPY /usr/local/bin/go2rtc /bin/go2rtc # buildkit
                        
# 2026-01-24 04:19:09  2.76KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-01-24 04:19:09  0.00B 设置环境变量 S6_SERVICES_GRACETIME UV_SYSTEM_PYTHON UV_NO_CACHE
ENV S6_SERVICES_GRACETIME=240000 UV_SYSTEM_PYTHON=true UV_NO_CACHE=true
                        
# 2026-01-24 04:19:09  0.00B 添加元数据标签
LABEL io.hass.type=core org.opencontainers.image.authors=The Home Assistant Authors org.opencontainers.image.description=Open-source home automation platform running on Python 3 org.opencontainers.image.documentation=https://www.home-assistant.io/docs/ org.opencontainers.image.licenses=Apache-2.0 org.opencontainers.image.source=https://github.com/home-assistant/core org.opencontainers.image.title=Home Assistant org.opencontainers.image.url=https://www.home-assistant.io/
                        
# 2025-12-11 02:44:55  44.40KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2025-12-11 02:44:55  1.11MB 复制新文件或目录到容器中
COPY /opt/telldus/ /usr/local/ # buildkit
                        
# 2025-12-11 02:44:55  7.97MB 复制新文件或目录到容器中
COPY /opt/picotts/usr/local/ /usr/local/ # buildkit
                        
# 2025-12-11 02:44:55  4.00B 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/amd64-base-python:3.13-alpine3.22-2025.12.1 /bin/ash -o pipefail -c python_version=$(python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")     && echo "cec" > "/usr/local/lib/python${python_version}/site-packages/cec.pth" # buildkit
                        
# 2025-12-11 02:44:55  2.21MB 复制新文件或目录到容器中
COPY /opt/libcec/ /usr/local/ # buildkit
                        
# 2025-12-11 02:44:28  144.36KB 复制新文件或目录到容器中
COPY /opt/ssocr/ /usr/local/ # buildkit
                        
# 2025-12-11 02:44:22  0.00B 设置工作目录为/usr/src/
WORKDIR /usr/src/
                        
# 2025-12-11 02:44:22  21.12MB 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/amd64-base-python:3.13-alpine3.22-2025.12.1 /bin/ash -o pipefail -c pip3 install --only-binary=:all:         -r /tmp/requirements.txt # buildkit
                        
# 2025-12-11 02:44:18  160.98MB 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/amd64-base-python:3.13-alpine3.22-2025.12.1 /bin/ash -o pipefail -c apk add         bluez         bluez-deprecated         bluez-libs         confuse         curl         eudev-libs         ffmpeg         git         grep         hwdata-usb         imlib2         iperf3         libftdi1         libgpiod         libpulse         libturbojpeg         libzbar         mariadb-connector-c         net-tools         nmap         openssh-client         p8-platform         pianobar         popt         pulseaudio-alsa         socat # buildkit
                        
# 2025-12-11 02:44:18  0.00B 定义构建参数
ARG BUILD_FROM=ghcr.io/home-assistant/amd64-base-python:3.13-alpine3.22-2025.12.1
                        
# 2025-12-11 02:44:18  0.00B 定义构建参数
ARG BUILD_ARCH=amd64
                        
# 2025-12-11 01:06:11  10.24MB 执行命令并创建新的镜像层
RUN |4 PYTHON_VERSION=3.13.11 CERT_IDENTITY=thomas@python.org CERT_OIDC_ISSUER=https://accounts.google.com PIP_VERSION=25.3 /bin/ash -o pipefail -c set -ex;     python -m ensurepip --upgrade --default-pip;     pip3 install --no-cache-dir --upgrade pip=="${PIP_VERSION}";     pip --version # buildkit
                        
# 2025-12-11 01:06:07  0.00B 定义构建参数
ARG PIP_VERSION=25.3
                        
# 2025-12-11 01:06:07  66.43MB 执行命令并创建新的镜像层
RUN |3 PYTHON_VERSION=3.13.11 CERT_IDENTITY=thomas@python.org CERT_OIDC_ISSUER=https://accounts.google.com /bin/ash -o pipefail -c set -ex     && export PYTHON_VERSION=${PYTHON_VERSION}     && apk add --no-cache --virtual .fetch-deps         openssl         tar         xz     && apk add --no-cache --virtual .cosign cosign         --repository="https://dl-cdn.alpinelinux.org/alpine/v3.21/community"         && curl -L -o python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"     && curl -L -o python.tar.xz.sigstore "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.sigstore"     && cosign verify-blob         --new-bundle-format         --certificate-identity "${CERT_IDENTITY}"         --certificate-oidc-issuer "${CERT_OIDC_ISSUER}"         --bundle python.tar.xz.sigstore         python.tar.xz     && mkdir -p /usr/src/python     && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz     && rm python.tar.xz python.tar.xz.sigstore         && apk add --no-cache --virtual .build-deps          patch         bzip2-dev         coreutils         dpkg-dev dpkg         expat-dev         findutils         build-base         gdbm-dev         libc-dev         libffi-dev         libnsl-dev         openssl         openssl-dev         libtirpc-dev         linux-headers         make         mpdecimal-dev         ncurses-dev         pax-utils         readline-dev         sqlite-dev         tcl-dev         tk         tk-dev         xz-dev         zlib-dev         bluez-dev     && apk del .fetch-deps .cosign         && for i in /usr/src/patches/*.patch; do         patch -d /usr/src/python -p 1 < "${i}"; done     && cd /usr/src/python     && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"     && ./configure         --build="$gnuArch"         --enable-loadable-sqlite-extensions         --enable-optimizations         --enable-option-checking=fatal         --enable-shared         --with-lto         --with-system-libmpdec         --with-system-expat         --without-ensurepip         --without-static-libpython     && make -j "$(nproc)"         LDFLAGS="-Wl,--strip-all"         CFLAGS="-fno-semantic-interposition -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free"         EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"     && make install     	&& find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' 		| tr ',' '\n' 		| sort -u 		| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' 		| xargs -rt apk add --no-cache --virtual .python-rundeps 	&& apk del .build-deps 	    && find /usr/local -depth         \(             -type d -a \( -name test -o -name tests \)         \) -exec rm -rf '{}' +     && rm -rf /usr/src/python     && cd /usr/local/bin     && ln -s idle3 idle     && ln -s pydoc3 pydoc     && ln -s python3 python     && ln -s python3-config python-config # buildkit
                        
# 2025-12-11 01:06:07  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2025-12-11 01:06:07  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-12-11 01:06:07  0.00B 定义构建参数
ARG PYTHON_VERSION=3.13.11 CERT_IDENTITY=thomas@python.org CERT_OIDC_ISSUER=https://accounts.google.com
                        
# 2025-12-11 00:46:25  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2025-12-11 00:46:25  0.00B 设置工作目录为/
WORKDIR /
                        
# 2025-12-11 00:46:25  152.00B 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2025-12-11 00:46:25  36.66MB 执行命令并创建新的镜像层
RUN |5 BASHIO_VERSION=0.17.5 TEMPIO_VERSION=2024.11.2 S6_OVERLAY_VERSION=3.1.6.2 JEMALLOC_VERSION=5.3.0 BUILD_ARCH=amd64 /bin/ash -o pipefail -c set -x     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         libstdc++         tzdata         xz         && apk add --no-cache --virtual .build-deps         build-base         autoconf         git         && if [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && git clone "https://github.com/jemalloc/jemalloc" /usr/src/jemalloc     && cd /usr/src/jemalloc     && git checkout ${JEMALLOC_VERSION}     && ./autogen.sh         --with-lg-page=16     && make -j "$(nproc)"     && make install_lib_shared install_bin         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio         "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio         && apk del .build-deps     && rm -rf /usr/src/* # buildkit
                        
# 2025-12-11 00:45:15  0.00B 定义构建参数
ARG BUILD_ARCH=amd64
                        
# 2025-12-11 00:45:15  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2025-12-11 00:45:15  0.00B 定义构建参数
ARG BASHIO_VERSION=0.17.5 TEMPIO_VERSION=2024.11.2 S6_OVERLAY_VERSION=3.1.6.2 JEMALLOC_VERSION=5.3.0
                        
# 2025-12-11 00:45:15  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2025-12-11 00:45:15  0.00B 设置环境变量 LANG S6_BEHAVIOUR_IF_STAGE2_FAILS S6_CMD_WAIT_FOR_SERVICES_MAXTIME S6_CMD_WAIT_FOR_SERVICES S6_SERVICES_READYTIME UV_EXTRA_INDEX_URL
ENV LANG=C.UTF-8 S6_BEHAVIOUR_IF_STAGE2_FAILS=2 S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_CMD_WAIT_FOR_SERVICES=1 S6_SERVICES_READYTIME=50 UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/
                        
# 2025-10-08 19:04:56  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-10-08 19:04:56  8.32MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:9edb3a466ef31d035d02a0e5f744477f2b721afd633909bcb84b08a4f402a5d1",
    "RepoTags": [
        "ghcr.io/home-assistant/home-assistant:2026.1.3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant:2026.1.3"
    ],
    "RepoDigests": [
        "ghcr.io/home-assistant/home-assistant@sha256:c36741490472518338323db8ee67775d7df70d2fa1f68eff9b9e63679fe64a18",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/home-assistant/home-assistant@sha256:d46bd36d9f4429cc7cbe58a86d24fc986fb016b6df3ccb0ab4bd35c85ce6910b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-23T20:20:24.813238817Z",
    "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/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "LANG=C.UTF-8",
            "S6_BEHAVIOUR_IF_STAGE2_FAILS=2",
            "S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0",
            "S6_CMD_WAIT_FOR_SERVICES=1",
            "S6_SERVICES_READYTIME=50",
            "UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/",
            "S6_SERVICES_GRACETIME=240000",
            "UV_SYSTEM_PYTHON=true",
            "UV_NO_CACHE=true"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/config",
        "Entrypoint": [
            "/init"
        ],
        "OnBuild": null,
        "Labels": {
            "io.hass.arch": "amd64",
            "io.hass.base.arch": "amd64",
            "io.hass.base.image": "ghcr.io/home-assistant/amd64-base:3.22",
            "io.hass.base.name": "python",
            "io.hass.base.version": "2025.12.1",
            "io.hass.type": "core",
            "io.hass.version": "2026.1.3",
            "org.opencontainers.image.authors": "The Home Assistant Authors",
            "org.opencontainers.image.created": "2026-01-23 20:18:54+00:00",
            "org.opencontainers.image.description": "Open-source home automation platform running on Python 3",
            "org.opencontainers.image.documentation": "https://www.home-assistant.io/docs/",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.source": "https://github.com/home-assistant/core",
            "org.opencontainers.image.title": "Home Assistant",
            "org.opencontainers.image.url": "https://www.home-assistant.io/",
            "org.opencontainers.image.version": "2026.1.3"
        },
        "Shell": [
            "/bin/ash",
            "-o",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2272670860,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/645061e622e81c3732954ca86ee6f3f7c3965d314548a0ebe9585379ca6ac370/diff:/var/lib/docker/overlay2/8ae49e2e2b02b2d2349d99a91793de9162f4b6c3d40a4699bb48991fe35431e3/diff:/var/lib/docker/overlay2/278297d8498e058d31684dde3f0bf92b5180602576096735ee2f090485be8093/diff:/var/lib/docker/overlay2/d2b857646c159e639cd77cc35740a2de0d7f556aadca38440c1688206fcdafff/diff:/var/lib/docker/overlay2/d11ff0dc418fad3bd1d836c2614fa950b7011a01ad0f5965d527a978844eba07/diff:/var/lib/docker/overlay2/60c1544ff9be5f8ad4f274bdad3a440ae1730ba2bd4fa87e9c785472576100f6/diff:/var/lib/docker/overlay2/dee17f578266b2a1538a6eb42b11265850d25187830cb2e333b0d8d93c507ecb/diff:/var/lib/docker/overlay2/9a63ab31fe205b3e44c92d504e08aee5dbc9dbf0c6eb3f0e38368b8f7ec7bc88/diff:/var/lib/docker/overlay2/04395b797e4c5452b02d556135ef191e02c45edfb07beb0f7757c5f2d6441458/diff:/var/lib/docker/overlay2/f5d1fa526380c2130224cd4a81b649bdbe919533f30a05d725b36e6dd482066c/diff:/var/lib/docker/overlay2/873848a8318281c1c08cdd1dfbdeacb96dadd3e7af7852b3acd28248c2feeb8a/diff:/var/lib/docker/overlay2/4fe5ab87ab438a4268a048581d3adf5f299a2ff1004d85aa2f86457036ec810a/diff:/var/lib/docker/overlay2/cf6abee83796ae6dd15070d4061b36dea1932692fd17277fae00d07ecc14c1f3/diff:/var/lib/docker/overlay2/41965cf11986ea5149d74ff79f6de6e70c2ddcb71736f2d3867c4466fe5b35de/diff:/var/lib/docker/overlay2/9a3070892845dfd5b7be5e655441e1c9fea64b9e2d4c39cbf098ab0caa96c0f6/diff:/var/lib/docker/overlay2/3bee6a78f4434c3c5538c95ecff8891a2051d88381eff4d96be2c648516d95e5/diff:/var/lib/docker/overlay2/d3b0bc73279f9715723f8957033b7951fcf6d9e8c61b4d22bd6d17be8671a8b6/diff:/var/lib/docker/overlay2/575795744a8cf283fe2c0f5c916552792ab9278d08f5c755ac88f0f4cedd8df2/diff:/var/lib/docker/overlay2/f98d13b4ce7134d6e0bc8ec8f7b04072614ffd8c09f74ff1c5c2578ee7703830/diff:/var/lib/docker/overlay2/fbb798fd0151d0b4242d5af043f6f2a313cd29aa18a9fc1dd329911b2f75876b/diff:/var/lib/docker/overlay2/c80f592b21cf43d5ec29a31271b9085b782c22995c8112da476bfcd2c821cd14/diff:/var/lib/docker/overlay2/c51052afc5091bae799ab8314c2c82b1fc7e611ca7b8dd9ec99fe5ff4151f5e2/diff:/var/lib/docker/overlay2/b50baaed54eba469c56747f72c20b5f5e97afa06e42fc4dc80af907e9592660b/diff:/var/lib/docker/overlay2/3bcb245889e6503b97a023be5911f998d6238d215058ee84f28d047f83389d18/diff:/var/lib/docker/overlay2/2cb75448c321b979ad5fcd739ebb982e2e6a9ef450525b22a2ee0bbdfffa2e28/diff:/var/lib/docker/overlay2/9228d0dea91f2a86651259163a395152983e6f8dd01e3c64990f331280069735/diff",
            "MergedDir": "/var/lib/docker/overlay2/a3e25464e8013059114e5baf407bbbd3b4fc963617962c1967ba4da451bdecd1/merged",
            "UpperDir": "/var/lib/docker/overlay2/a3e25464e8013059114e5baf407bbbd3b4fc963617962c1967ba4da451bdecd1/diff",
            "WorkDir": "/var/lib/docker/overlay2/a3e25464e8013059114e5baf407bbbd3b4fc963617962c1967ba4da451bdecd1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:256f393e029fa2063d8c93720da36a74a032bed3355a2bc3e313ad12f8bde9d1",
            "sha256:67160e316c936d70436239720d207b6ee6d21bcced3e97f941f77d656fa89b38",
            "sha256:31cf9e8727e8c507b2a0eac2787f292853635a852b4ffadf9b57442030e5c742",
            "sha256:4e563803430bfc8d264c862034105af76ae0bfe1d89c7dfb7eb4a776b2977b03",
            "sha256:95900ceb0266b213f272a6d1401f005546bc6c89ee5e570cfddcceba9de20233",
            "sha256:b8466640c7e40b61249022a90bb7e26dd001e32839f16c6613f0f3556533b846",
            "sha256:955c76eab5830a37bb3b219a43c306296428d4a65b7379a69bc26039b38c962b",
            "sha256:c1a4dd672f62292b8d08020e9ed13e492d27b4f18ab431024284976994fa5363",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:7f62976406d93495fe4be04e42c92d47a4531d6e9d9881bed6e37fede1d1a9b3",
            "sha256:57db92ab7622bb574746daeb426201fb5b89535f36b3dc52585129848038a768",
            "sha256:989395847dd0ec55349327e9291fb126daf1944781c8ad5e461e5ff5e17dcda5",
            "sha256:b87235178c50e09c7cccff35f44a9c4cab7c01b91a853c13dbd7ad5b8d2281d9",
            "sha256:8e45a57e915e6f11e7847149c1d6349b0a051dd092391b1d12d7b6c827ffb0eb",
            "sha256:b04a094d3d086335b05ecea168baabd72d707de50cc9848859d674f026c39795",
            "sha256:eff1f20af3c45cf80e5ac36ec0cc55f799651c5c9bdd6d1cfd69dba1d26aba60",
            "sha256:d994b32d47f476b799699929ead322d298884737bdfcd8ea3a49ace0e4fd2511",
            "sha256:357a038fc10a270524b566b7fe1bd602ad722a7e6b3e1c800ee8e98cfa7d121b",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:9847b940265da6a12b05c464c4ffaff2874f6cc256bbdd00fbdd47943bc99fd9",
            "sha256:7baca0f63559babe416f74db44a100a6fb7439d0b56354f9cc90721a7a68a7eb",
            "sha256:f2c419583d984e6279af8349dd9ce91bb376323069efecbfee2dfebba88d781e",
            "sha256:5fc5ace29ad8f5e6cdac3596b0ec7909763b5d912736cb54840b54947163aa5a",
            "sha256:90d31b8179207d770dc9c5f65c51ab6039bd66f93eb68b196536f40cbc8b5345",
            "sha256:ea24415a8a42f382a6c42d7017ae05f4d5e3f763d85fe524625017deea57be1a",
            "sha256:b2a2f06b7bacde15bdd63254d1330cec2874dd15b06f5bfc970b7df43c170c4d",
            "sha256:a1684de547d7edb0d714d5b180cdf7d5d2419d290820061a5ba733796df84d88"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-27T16:30:01.814246498+08:00"
    }
}

更多版本

ghcr.io/home-assistant/home-assistant:stable

linux/amd64 ghcr.io1.59GB2024-06-24 23:50
6193

ghcr.io/home-assistant/home-assistant:2024.7.0

linux/amd64 ghcr.io1.60GB2024-07-05 15:56
474

ghcr.io/home-assistant/home-assistant:2024.7.0

linux/arm ghcr.io1.39GB2024-07-05 16:01
982

ghcr.io/home-assistant/home-assistant:2024.7.0

linux/arm64 ghcr.io1.58GB2024-07-15 10:27
1148

ghcr.io/home-assistant/home-assistant:2024.8.0.dev202407260220

linux/amd64 ghcr.io1.72GB2024-07-26 14:42
538

ghcr.io/home-assistant/home-assistant:stable

linux/arm64 ghcr.io1.67GB2024-09-19 01:50
863

ghcr.io/home-assistant/home-assistant:latest

linux/arm64 ghcr.io1.67GB2024-09-19 01:51
1299

ghcr.io/home-assistant/home-assistant:2024.3.3

linux/386 ghcr.io1.82GB2024-10-24 10:26
327

ghcr.io/home-assistant/home-assistant:2024.10.3

linux/amd64 ghcr.io1.79GB2024-10-25 14:40
492

ghcr.io/home-assistant/home-assistant:2024.12.4

linux/arm64 ghcr.io1.74GB2025-02-10 13:57
353

ghcr.io/home-assistant/home-assistant:2026.1.3

linux/amd64 ghcr.io2.27GB2026-01-27 16:31
12