docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241 linux/amd64

docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241 - 国内下载镜像源 浏览次数:32
Home Assistant是一个开源的智能家居自动化平台,可以控制和整合各种智能设备,并提供实时监控和远程控制功能。该平台支持多种协议,如MQTT、Z-Wave、Bluetooth等,並且支持各种智能设备,如智能照明、智能锁、智能摄像头等。
源镜像 docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241
镜像ID sha256:da73a17f2bb27624fd44fedf82f434c85f764f8c556beb056865a44fed33da7e
镜像TAG 2026.2.0.dev202601030241
大小 2.43GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /init
工作目录 /config
OS/平台 linux/amd64
浏览量 32 次
贡献者
镜像创建 2026-01-03T02:46:40.093868926Z
同步时间 2026-01-03 23:41
更新时间 2026-01-05 08:37
环境变量
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.2.0.dev202601030241: io.hass.version The Home Assistant Authors: org.opencontainers.image.authors 2026-01-03 02:45:09+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.2.0.dev202601030241: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241  docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241  docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241

Shell快速替换命令

sed -i 's#homeassistant/home-assistant:2026.2.0.dev202601030241#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-01-03 10:46:40  0.00B 设置工作目录为/config
WORKDIR /config
                        
# 2026-01-03 10:46:39  60.45MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c uv pip install         -e ./homeassistant     && python3 -m compileall         homeassistant/homeassistant # buildkit
                        
# 2026-01-03 10:46:16  226.65MB 复制新文件或目录到容器中
COPY . homeassistant/ # buildkit
                        
# 2026-01-03 10:46:08  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-03 10:45:38  104.97MB 复制新文件或目录到容器中
COPY requirements_all.txt home_assistant_frontend-* home_assistant_intents-* homeassistant/ # buildkit
                        
# 2026-01-03 10:45:37  314.54MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c uv pip install         --no-build         -r homeassistant/requirements.txt # buildkit
                        
# 2026-01-03 10:45:29  6.41KB 复制新文件或目录到容器中
COPY homeassistant/package_constraints.txt homeassistant/homeassistant/ # buildkit
                        
# 2026-01-03 10:45:29  1.25KB 复制新文件或目录到容器中
COPY requirements.txt homeassistant/ # buildkit
                        
# 2026-01-03 10:45:29  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2026-01-03 10:45:29  55.55MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c go2rtc --version     && pip3 install uv==0.9.17 # buildkit
                        
# 2026-01-03 10:45:27  18.65MB 复制新文件或目录到容器中
COPY /usr/local/bin/go2rtc /bin/go2rtc # buildkit
                        
# 2026-01-03 10:45:27  2.76KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-01-03 10:45:27  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-03 10:45:27  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:da73a17f2bb27624fd44fedf82f434c85f764f8c556beb056865a44fed33da7e",
    "RepoTags": [
        "homeassistant/home-assistant:2026.2.0.dev202601030241",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241"
    ],
    "RepoDigests": [
        "homeassistant/home-assistant@sha256:71ed5b01f4b0b84b460f9d2da9cfd2946e3c302f540ed7e35e20e3d8901de690",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant@sha256:ea8df94692bdbb5452fa2047bde5c07afca9a12a49d4dba3deec717b1b921d10"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-03T02:46:40.093868926Z",
    "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.2.0.dev202601030241",
            "org.opencontainers.image.authors": "The Home Assistant Authors",
            "org.opencontainers.image.created": "2026-01-03 02:45:09+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.2.0.dev202601030241"
        },
        "Shell": [
            "/bin/ash",
            "-o",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2425691102,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/77916c1adbdf4785b0ad68f2994608ed03fea39b66deaafdaaf5727f1edcdc22/diff:/var/lib/docker/overlay2/104eb52e3de0c9bb16f81d86642630a282863c344f01bf5f1d5e649950f77872/diff:/var/lib/docker/overlay2/9d51af201d666626543828c71d8d9c3fc28eadb07b3e108d06f55eeba9f8c3f7/diff:/var/lib/docker/overlay2/331dbb72ee64ed33e6333ad123efb02bf0427a2df944c6a22ce9f166893a7464/diff:/var/lib/docker/overlay2/b55f530772ef342d92d7afb5aa0123346b17ee93ecb8caa58a71eb9b9f31840a/diff:/var/lib/docker/overlay2/1fe0affebc2f1612af0b9e296df8df83c37079f4d3a47882af971f9b52e5bcfc/diff:/var/lib/docker/overlay2/edba78a313eeec2d1711735521882ff57b976df83d6fcd85330a4bb77785bff2/diff:/var/lib/docker/overlay2/3fa998891a6f3e43a9db1f4eec8c71628fd8f9212b2d74b0d282f0401cf6ee21/diff:/var/lib/docker/overlay2/9aedceb6f74e9445e892734e342383086980992d9fdaf9577e07a9e9c9990c7f/diff:/var/lib/docker/overlay2/1605be30b58d1c552178632b40d729c44af3f1ac08e0213f0b23e5603654797a/diff:/var/lib/docker/overlay2/4ad5223be729c728247c9c40c1f9accd21d00dca2d885a39b3036d295fdbedb0/diff:/var/lib/docker/overlay2/351cdb4f2f4bb1241d1c295c5d3077b801d6cb18445e1a7599cb743ea27c6e20/diff:/var/lib/docker/overlay2/3aca1c0ebef76d2daab7b5978e892157bc42b359d874736da49cf295d321384c/diff:/var/lib/docker/overlay2/ecb4151acb30dd00776e536c55346a4f85b5dea7ee59014cd28ca65aec6b1bc2/diff:/var/lib/docker/overlay2/c6e328e8d4f1333f5d8972df844a8a9e7a9c64ae028e525bf751e08790b21980/diff:/var/lib/docker/overlay2/e3cd17059e906125a24b1720dbd4cb6fe9488ebe497c913df002e9a85359df6a/diff:/var/lib/docker/overlay2/e7000e4b8505144b80716f9f8968d80a7e3ae07717ae02ac69aa02c1da3bd06e/diff:/var/lib/docker/overlay2/236a4f807acc3baa566ca06ce770f2fa2ed19b094b297861c88ee940a665a54f/diff:/var/lib/docker/overlay2/9bcdaa8feda4e8eafc61ab2d90e530da61c2fc383469224c15bc3ff58c8cddc6/diff:/var/lib/docker/overlay2/40915dfc21ebff4b83c1a577d4d5a7b9be4bb3a6a1b3518df6519c19252cb0ce/diff:/var/lib/docker/overlay2/b4c7558cd3e940419eeddc715da8faac6838c4d6de30604209049c9e259b8f15/diff:/var/lib/docker/overlay2/9c4424894e981abcb74459ca63bd294a7f165a09dde796008bf3576424849b97/diff:/var/lib/docker/overlay2/422ba958eb2ff010e8eb3376de89d7c5c6be9ca65e0c93e41e0b35b156ebfb6d/diff:/var/lib/docker/overlay2/9944e859f27efe021fcd53507ea652dff2544cc10abcb0d4d916b1c8fa2c41b9/diff:/var/lib/docker/overlay2/d36f38af2f15493a8e3240d0511f5b0a9c2bf396fed3cc252a31d207bedcce54/diff:/var/lib/docker/overlay2/9228d0dea91f2a86651259163a395152983e6f8dd01e3c64990f331280069735/diff",
            "MergedDir": "/var/lib/docker/overlay2/4d4c9425332e49a16491993cdc54ad43c02ac74085da6c76bfb8f828bcc082ee/merged",
            "UpperDir": "/var/lib/docker/overlay2/4d4c9425332e49a16491993cdc54ad43c02ac74085da6c76bfb8f828bcc082ee/diff",
            "WorkDir": "/var/lib/docker/overlay2/4d4c9425332e49a16491993cdc54ad43c02ac74085da6c76bfb8f828bcc082ee/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:93ab4a17f6a45cbcba2679fa4fc443a74b2cdf165090afcb31d5db6d56731851",
            "sha256:b06554e2162b07f3f1c8d5ac89f84ad1ad6ac071e3188438b347631b7f630d41",
            "sha256:457a28afdb2698314f26d86f8a5ed81f417e5e229111fe14033b8044211ccab9",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:ac84cb4d3778e184a45a6f06cfa02ffb9031e9d391d85d85b8497ee538662b7b",
            "sha256:5720dc1ea4196e4ae44620d995d20d40490785f43577794cb9fe4817813c1da1",
            "sha256:c52677759cac26aeeef86b708477b6bb7a4368cb79a51d0cbfe87227c288f644",
            "sha256:08a260ebdd08e71b30a297d9e098dc71f921bb1214e7868530bff7bbca5b0016",
            "sha256:a962a853535593d63d8ed3e9cfeaf350f486a4d184e7e5e919aabea162fd1b4f",
            "sha256:4105fcf7e83853f7794b023e5bac3fe30c96d5d23cdab536e78287ac7f165150",
            "sha256:f1f9ed33e2864cd57c6a5febbd6f645b3db47e15f7d0568b5c5ce434874db844",
            "sha256:b07b83b646a391a4357da6509a9485708bc49810a94d719959b465a0a5b61071"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-03T23:39:26.203600859+08:00"
    }
}

更多版本

docker.io/homeassistant/home-assistant:stable

linux/amd64 docker.io1.60GB2024-07-08 01:04
4771

docker.io/homeassistant/home-assistant:2024.8

linux/amd64 docker.io1.64GB2024-08-29 13:56
1636

docker.io/homeassistant/home-assistant:stable

linux/arm64 docker.io1.67GB2024-09-19 01:50
1830

docker.io/homeassistant/home-assistant:2024.10

linux/amd64 docker.io1.79GB2024-10-08 17:37
677

docker.io/homeassistant/home-assistant:2024.11

linux/amd64 docker.io1.75GB2024-11-15 10:06
910

docker.io/homeassistant/home-assistant:2024.12.0b3

linux/amd64 docker.io1.78GB2024-12-02 10:09
675

docker.io/homeassistant/home-assistant:2024.12

linux/arm64 docker.io1.74GB2024-12-18 17:58
584

docker.io/homeassistant/home-assistant:2024.12

linux/amd64 docker.io1.78GB2024-12-18 18:52
439

docker.io/homeassistant/home-assistant:2024.12.5

linux/amd64 docker.io1.78GB2024-12-24 01:47
518

docker.io/homeassistant/home-assistant:2025.1.0

linux/amd64 docker.io1.80GB2025-01-07 15:18
505

docker.io/homeassistant/home-assistant:2025.1

linux/amd64 docker.io1.84GB2025-01-21 11:22
425

docker.io/homeassistant/home-assistant:2025.2.0b10

linux/amd64 docker.io1.80GB2025-02-06 18:02
325

docker.io/homeassistant/home-assistant:2025.2

linux/amd64 docker.io1.83GB2025-02-13 14:27
394

docker.io/homeassistant/home-assistant:2025.2.5

linux/amd64 docker.io1.84GB2025-02-23 22:06
544

docker.io/homeassistant/home-assistant:2025.3

linux/amd64 docker.io1.81GB2025-03-08 13:53
422

docker.io/homeassistant/home-assistant:latest

linux/amd64 docker.io1.81GB2025-03-10 09:33
1623

docker.io/homeassistant/home-assistant:2025.3.3

linux/amd64 docker.io1.81GB2025-03-21 01:04
672

docker.io/homeassistant/home-assistant:2025.1.0

linux/arm64 docker.io1.76GB2025-06-19 17:36
638

docker.io/homeassistant/home-assistant:2025.6.3

linux/amd64 docker.io1.99GB2025-06-29 00:27
445

docker.io/homeassistant/home-assistant:2025.7

linux/amd64 docker.io2.02GB2025-07-03 11:49
403

docker.io/homeassistant/home-assistant:2025.7.2

linux/amd64 docker.io2.02GB2025-07-17 16:37
630

docker.io/homeassistant/home-assistant:2025.7

linux/arm64 docker.io2.00GB2025-07-30 22:47
281

docker.io/homeassistant/home-assistant:dev

linux/amd64 docker.io2.17GB2025-08-15 20:35
269

docker.io/homeassistant/home-assistant:2025.8

linux/amd64 docker.io2.02GB2025-08-15 22:09
192

docker.io/homeassistant/home-assistant:2025.8.1

linux/amd64 docker.io2.02GB2025-08-16 17:13
423

docker.io/homeassistant/home-assistant:2025.8.2

linux/amd64 docker.io2.03GB2025-08-19 22:22
262

docker.io/homeassistant/home-assistant:2025.9.0

linux/amd64 docker.io2.04GB2025-09-04 14:23
300

docker.io/homeassistant/home-assistant:2025.9.4

linux/amd64 docker.io2.04GB2025-09-25 10:33
258

docker.io/homeassistant/home-assistant:2025.8.2

linux/arm64 docker.io2.01GB2025-10-06 19:57
171

docker.io/homeassistant/home-assistant:2025.10

linux/arm64 docker.io2.05GB2025-10-14 11:29
170

docker.io/homeassistant/home-assistant:2025.10

linux/amd64 docker.io2.07GB2025-10-19 22:31
188

docker.io/homeassistant/home-assistant:2025.10.3

linux/amd64 docker.io2.07GB2025-10-23 19:11
142

docker.io/homeassistant/home-assistant:2025.11.0b4

linux/amd64 docker.io2.12GB2025-11-05 17:33
151

docker.io/homeassistant/home-assistant:2025.11.1

linux/amd64 docker.io2.12GB2025-11-13 02:26
183

docker.io/homeassistant/home-assistant:2025.11

linux/amd64 docker.io2.09GB2025-11-27 11:35
112

docker.io/homeassistant/home-assistant:2025.12.1

linux/arm64 docker.io2.13GB2025-12-07 14:00
154

docker.io/homeassistant/home-assistant:2025.12.4

linux/arm64 docker.io2.14GB2025-12-27 15:10
130

docker.io/homeassistant/home-assistant:2026.2.0.dev202601030241

linux/amd64 docker.io2.43GB2026-01-03 23:41
31