logo
docker.io/homeassistant/home-assistant:2026.8.2
linux/amd64 docker.io
Home Assistant是一个开源的智能家居自动化平台,可以控制和整合各种智能设备,并提供实时监控和远程控制功能。该平台支持多种协议,如MQTT、Z-Wave、Bluetooth等,並且支持各种智能设备,如智能照明、智能锁、智能摄像头等。
13
浏览次数
2.39GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.8.2
源镜像
docker.io/homeassistant/home-assistant:2026.8.2
镜像ID
sha256:5243c68ba6735aa1073690e93d3b6b11b55f890b4725472d658d18ff5687f19c
镜像 TAG
2026.8.2
镜像大小
2.39GB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/init
工作目录
/config
OS/平台
linux/amd64
镜像创建
2026-08-14T16:45:41.568747109Z
同步时间
2026-08-23 19:55
浏览量
13 次
贡献者
⚙️ 环境变量 11
KeyValue
PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
LANG=C.UTF-8 1
S6_BEHAVIOUR_IF_STAGE2_FAILS=2 2
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 3
S6_CMD_WAIT_FOR_SERVICES=1 4
S6_SERVICES_READYTIME=50 5
PIP_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/ 6
UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/ 7
S6_SERVICES_GRACETIME=240000 8
UV_SYSTEM_PYTHON=true 9
UV_NO_CACHE=true 10
🏷️ 镜像标签 16
KeyValue
amd64 io.hass.arch
amd64 io.hass.base.arch
ghcr.io/home-assistant/base:3.24 io.hass.base.image
python io.hass.base.name
2026.06.1 io.hass.base.version
core io.hass.type
2026.8.2 io.hass.version
The Home Assistant Authors org.opencontainers.image.authors
2026-08-14 16:44:03+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.8.2 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.24.1 Trivy 2026-08-23 19:55 查看完整报告
6
低危 LOW
103
中危 MEDIUM
114
高危 HIGH
2
严重 CRITICAL
受影响目标 (7)
docker.io/homeassistant/home-assistant:2026.8.2 (alpine 3.24.1) alpine Python python-pkg bin/go2rtc gobinary usr/bin/tempio gobinary usr/local/bin/uv rustbinary usr/local/bin/uvx rustbinary usr/local/lib/python3.14/site-packages/selenium/webdriver/common/selenium-manager.cdx.json cargo

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#homeassistant/home-assistant:2026.8.2#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.8.2#' 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.8.2 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.8.2  docker.io/homeassistant/home-assistant:2026.8.2'

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-08-15 00:45:41  0.00B 设置工作目录为/config
WORKDIR /config
                        
# 2026-08-15 00:45:41  79.30MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c uv pip install         -e ./homeassistant     && python3 -m compileall         homeassistant/homeassistant # buildkit
                        
# 2026-08-15 00:45:15  219.62MB 复制新文件或目录到容器中
COPY --parents LICENSE* README* homeassistant/ pyproject.toml homeassistant/ # buildkit
                        
# 2026-08-15 00:45:07  1.45GB 执行命令并创建新的镜像层
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-08-15 00:44:29  68.56KB 复制新文件或目录到容器中
COPY requirements_all.txt home_assistant_frontend-* home_assistant_intents-* homeassistant/ # buildkit
                        
# 2026-08-15 00:44:29  285.21MB 执行命令并创建新的镜像层
RUN /bin/ash -o pipefail -c go2rtc --version     && pip3 install --no-cache-dir "uv==$(awk -F'==' '/^uv==/{print $2}' homeassistant/requirements.txt)"     && uv pip install         --no-build         -r homeassistant/requirements.txt # buildkit
                        
# 2026-08-15 00:44:18  9.40KB 复制新文件或目录到容器中
COPY --parents requirements.txt homeassistant/package_constraints.txt homeassistant/ # buildkit
                        
# 2026-08-15 00:44:18  19.24MB 复制新文件或目录到容器中
COPY /usr/local/bin/go2rtc /bin/go2rtc # buildkit
                        
# 2026-08-15 00:44:18  3.09KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-08-15 00:44:15  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2026-08-15 00:44:15  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-08-15 00:44:15  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.title=Home Assistant org.opencontainers.image.url=https://www.home-assistant.io/
                        
# 2026-06-30 00:55:27  0.00B 添加元数据标签
LABEL io.hass.type=homeassistant-base org.opencontainers.image.title=Home Assistant Core baseimage org.opencontainers.image.description=Baseimage for Home Assistant Core container/supervisor installation org.opencontainers.image.authors=The Home Assistant Authors org.opencontainers.image.url=https://www.home-assistant.io/ org.opencontainers.image.documentation=https://www.home-assistant.io/docs/ org.opencontainers.image.licenses=Apache License 2.0
                        
# 2026-06-30 00:55:27  44.40KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-06-30 00:55:15  978.70KB 复制新文件或目录到容器中
COPY /opt/telldus/ /usr/local/ # buildkit
                        
# 2026-06-30 00:55:27  7.95MB 复制新文件或目录到容器中
COPY /opt/picotts/usr/local/ /usr/local/ # buildkit
                        
# 2026-06-30 00:55:12  4.00B 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/base-python:3.14-alpine3.24-2026.06.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
                        
# 2026-06-30 00:55:12  5.42MB 复制新文件或目录到容器中
COPY /opt/libcec/ /usr/local/ # buildkit
                        
# 2026-06-30 00:54:50  160.75KB 复制新文件或目录到容器中
COPY /opt/ssocr/ /usr/local/ # buildkit
                        
# 2026-06-30 00:54:47  0.00B 设置工作目录为/usr/src/
WORKDIR /usr/src/
                        
# 2026-06-30 00:54:47  21.79MB 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/base-python:3.14-alpine3.24-2026.06.1 /bin/ash -o pipefail -c pip3 install --only-binary=:all:         -r /tmp/requirements.txt # buildkit
                        
# 2026-06-30 00:54:44  168.63MB 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 BUILD_FROM=ghcr.io/home-assistant/base-python:3.14-alpine3.24-2026.06.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
                        
# 2026-06-30 00:54:44  0.00B 定义构建参数
ARG BUILD_FROM=ghcr.io/home-assistant/base-python:3.14-alpine3.24-2026.06.1
                        
# 2026-06-30 00:54:44  0.00B 定义构建参数
ARG BUILD_ARCH=amd64
                        
# 2026-06-16 18:54:37  0.00B 添加元数据标签
LABEL io.hass.type=base io.hass.base.name=python
                        
# 2026-06-16 18:54:37  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-06-16 18:54:37  81.95MB 复制新文件或目录到容器中
COPY / / # buildkit
                        
# 2026-06-16 17:22:11  0.00B 添加元数据标签
LABEL io.hass.type=base io.hass.base.name=alpine
                        
# 2026-06-16 17:22:11  0.00B 设置环境变量 LANG S6_BEHAVIOUR_IF_STAGE2_FAILS S6_CMD_WAIT_FOR_SERVICES_MAXTIME S6_CMD_WAIT_FOR_SERVICES S6_SERVICES_READYTIME PIP_EXTRA_INDEX_URL 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 PIP_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/ UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/
                        
# 2026-06-16 17:22:11  0.00B 定义构建参数
ARG EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/
                        
# 2026-06-16 17:22:11  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2026-06-16 17:22:11  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2026-06-16 17:22:11  38.15MB 复制新文件或目录到容器中
COPY / / # buildkit
                        
# 2026-06-16 08:01:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:01:29  8.42MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:5243c68ba6735aa1073690e93d3b6b11b55f890b4725472d658d18ff5687f19c",
    "RepoTags": [
        "homeassistant/home-assistant:2026.8.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2026.8.2"
    ],
    "RepoDigests": [
        "homeassistant/home-assistant@sha256:56690a89c79a0de98035e1719f8324a92d5859c1192ff45adb0230ea81cb42a5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant@sha256:0b4555ce00da796c656750010742a11d03a45427d74770a6194555740fb562a9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-14T16:45:41.568747109Z",
    "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",
            "PIP_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/",
            "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/base:3.24",
            "io.hass.base.name": "python",
            "io.hass.base.version": "2026.06.1",
            "io.hass.type": "core",
            "io.hass.version": "2026.8.2",
            "org.opencontainers.image.authors": "The Home Assistant Authors",
            "org.opencontainers.image.created": "2026-08-14 16:44:03+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.8.2"
        },
        "Shell": [
            "/bin/ash",
            "-o",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2385367608,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/00e45c6018574c69c2e5111c18689d8a4cd701e6760dcddcfb0d97619a3800c1/diff:/var/lib/docker/overlay2/59e66c0029f159c7003cf6f72417546d793b70ca512210c4dd42f5119a7c3818/diff:/var/lib/docker/overlay2/c4ae8a5fae16934c20990ecff3c1362a16a378524d0a5709293ad5428da14f21/diff:/var/lib/docker/overlay2/9a1f2a8e081afb4d94dd96c29dec65cb8f497d52af8c1f37e11eabedc390125e/diff:/var/lib/docker/overlay2/5d30deeaff4441390925f6c9eb3251d4a08cd36e6601056ac63cb81625f4356a/diff:/var/lib/docker/overlay2/09536b1a2bfc719f13e2d4bb901415f55be6709fff7e10fb562cb3484b8b6347/diff:/var/lib/docker/overlay2/e1102f7f543d3504526d112de94b2b01576045235f6dfd269972167cf0c6b0ba/diff:/var/lib/docker/overlay2/d476a3fdd2782fbaeba3b234a12e8b0d57ff79d39f8cd827d9eb0771d09e5e34/diff:/var/lib/docker/overlay2/f73c803e9ef0fb91dffa862c83abce2eeb7b306359db9c4184fdf06b1ab0ad02/diff:/var/lib/docker/overlay2/20b87a015028b2b08a1adf1eb061bbd13e6917b7f3629db38c0d8489276cfa3d/diff:/var/lib/docker/overlay2/11435e13889be8815c60edfcb85893e87f253537cd39d04441a8dbe78054fbdc/diff:/var/lib/docker/overlay2/0f3f0677ef720df7fe61584ca03361d7a02adb9bdf3aea04de05696d9f8a539d/diff:/var/lib/docker/overlay2/8c5860bd4eaded73467ba5600afb0f5a8f2e62d8fe393688f8f844f2171bf9b6/diff:/var/lib/docker/overlay2/2b8aa36a3e00004799326f1f7d3687cf55f0b51d3a0ed3c1159c99dd59f28fce/diff:/var/lib/docker/overlay2/46a0c202b7aa00577cb4f96327e0d2ffd482fc68b24e964fd8afb709a214de87/diff:/var/lib/docker/overlay2/5297d80c56d36bc1c836005e6aff6d5f56254ca43460eb2862ede718eb87b667/diff:/var/lib/docker/overlay2/26f896cfc29001cd2ce023b2b8c53edbacc7f8fbb8c65ed0dfb90acd3dc7716d/diff:/var/lib/docker/overlay2/458defccd7fbbba59152f8a4a160883163dd3611288e383f8b173e4e7da11292/diff:/var/lib/docker/overlay2/3639f8f9a123f9d2ea69ee67b6696e1ec4ca25848fe8899c3f0df678a37ba7f8/diff:/var/lib/docker/overlay2/371054b6592307e8a02767a1c10a5d37eb30ae461de464c5c613b498afc8946f/diff:/var/lib/docker/overlay2/d51bd9f442769618005c9be653661c047116bf4ebe32b04db2ad4ca7bebb792d/diff",
            "MergedDir": "/var/lib/docker/overlay2/c0c7be052fce111ada47cb94a7238d8401b894bc5326f0a1772d0920e284847a/merged",
            "UpperDir": "/var/lib/docker/overlay2/c0c7be052fce111ada47cb94a7238d8401b894bc5326f0a1772d0920e284847a/diff",
            "WorkDir": "/var/lib/docker/overlay2/c0c7be052fce111ada47cb94a7238d8401b894bc5326f0a1772d0920e284847a/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:34884abbe92863fce933ed7c39c0e045631af0ed86d5cc0dfbdf9fdca426ce3c",
            "sha256:887e770f2073f93e7b359f2286428c024e34d6b958bf866c5aa4cb5b41195841",
            "sha256:3a1c849b0505129399362d23f774eb8460fdfce3e2539f2992f49c9e253aace1",
            "sha256:fc4fa707bdc2746898e694a68a84eac4dc945732df54d45f77123574fab300bb",
            "sha256:2db683111a32c73fe3776d9705685182c70caa7c4d83770e3b000023633e63bd",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:596018a4b71c31b682e0183552ac004ce46c51cb2e73db88d84741896757a34d",
            "sha256:7bd3ac5dfabde7c3981d5f73e765d5e96cccfb741629a0ee17446ee6762e60d5",
            "sha256:70bbb0a0b79400cb54d4e31b1b5bdd1b32495d1b8a6a6034f16a2709b37dfabf",
            "sha256:0f288e89a8d63e96b3f14863f93c3adba59c1404536af1be862cfdce5f4049f9",
            "sha256:3f5444d2b6b7409245a60d6ab01f906d6497373f6260188eba6a799fedc6abaa",
            "sha256:97e3eb55e8b16317074e13f380dce675389c79587cb5ba8795a73ba9e99c7fcd",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:6daa10b8c4c0871f0555e08a6a8937ae1f1dca6c09472feccf3d9b99c969183b",
            "sha256:d098c60ea8080b07614e485cf592d9e3b6143dab4446bf82039ed9964b76eb7c",
            "sha256:e24177ece5454ef9e25c84f16abeccdb283312e2d63b0ffd49508986a5802b60",
            "sha256:0546871611e9d8e3302003410bb0c305a4baf0df7532b6f69646cf21c9372111",
            "sha256:01e2f441ea3a70a3ca50e42455ec0091fd10d9479b43a79bbca29c5330b2012b",
            "sha256:b0b39ad23371edddbc8fd9c23568c9679300bb75ced1a809a8b5666f2b83655c",
            "sha256:582f523aaefa5abc21c258c54baac500f413c649d692d8cfbcc8202d4c674c0e",
            "sha256:98a55437030bfa8ea19bfc8e4a6c8125a2ffca8e6ebaac52695f120178dfe66c",
            "sha256:d8335a8a3586af00e3c28d39cf8c6c7a8020b7ad1b31f7e6810720f7ddfbbfcf"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-08-23T19:54:01.38686633+08:00"
    }
}

更多版本

docker.io/homeassistant/home-assistant:stable

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

docker.io/homeassistant/home-assistant:2024.8

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

docker.io/homeassistant/home-assistant:stable

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

docker.io/homeassistant/home-assistant:2024.10

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

docker.io/homeassistant/home-assistant:2024.11

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

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

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

docker.io/homeassistant/home-assistant:2024.12

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

docker.io/homeassistant/home-assistant:2024.12

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

docker.io/homeassistant/home-assistant:2024.12.5

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

docker.io/homeassistant/home-assistant:2025.1.0

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

docker.io/homeassistant/home-assistant:2025.1

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

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

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

docker.io/homeassistant/home-assistant:2025.2

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

docker.io/homeassistant/home-assistant:2025.2.5

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

docker.io/homeassistant/home-assistant:2025.3

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

docker.io/homeassistant/home-assistant:latest

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

docker.io/homeassistant/home-assistant:2025.3.3

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

docker.io/homeassistant/home-assistant:2025.1.0

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

docker.io/homeassistant/home-assistant:2025.6.3

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

docker.io/homeassistant/home-assistant:2025.7

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

docker.io/homeassistant/home-assistant:2025.7.2

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

docker.io/homeassistant/home-assistant:2025.7

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

docker.io/homeassistant/home-assistant:dev

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

docker.io/homeassistant/home-assistant:2025.8

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

docker.io/homeassistant/home-assistant:2025.8.1

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

docker.io/homeassistant/home-assistant:2025.8.2

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

docker.io/homeassistant/home-assistant:2025.9.0

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

docker.io/homeassistant/home-assistant:2025.9.4

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

docker.io/homeassistant/home-assistant:2025.8.2

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

docker.io/homeassistant/home-assistant:2025.10

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

docker.io/homeassistant/home-assistant:2025.10

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

docker.io/homeassistant/home-assistant:2025.10.3

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

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

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

docker.io/homeassistant/home-assistant:2025.11.1

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

docker.io/homeassistant/home-assistant:2025.11

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

docker.io/homeassistant/home-assistant:2025.12.1

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

docker.io/homeassistant/home-assistant:2025.12.4

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

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

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

docker.io/homeassistant/home-assistant:2026.2

linux/amd64 docker.io2.29GB2026-02-10 17:16
685

docker.io/homeassistant/home-assistant:2026.2.3

linux/amd64 docker.io2.29GB2026-02-23 20:49
622

docker.io/homeassistant/home-assistant:2026.3

linux/amd64 docker.io2.31GB2026-03-27 09:30
367

docker.io/homeassistant/home-assistant:2026.3.4

linux/amd64 docker.io2.31GB2026-03-27 09:31
377

docker.io/homeassistant/home-assistant:2026.4

linux/amd64 docker.io2.28GB2026-04-03 13:56
483

docker.io/homeassistant/home-assistant:2026.5.4

linux/amd64 docker.io2.31GB2026-05-25 02:31
335

docker.io/homeassistant/home-assistant:2026.6.4

linux/amd64 docker.io2.33GB2026-06-28 14:36
209

docker.io/homeassistant/home-assistant:2026.7.0b2

linux/arm64 docker.io2.31GB2026-06-29 01:41
166

docker.io/homeassistant/home-assistant:2026.7.1

linux/amd64 docker.io2.36GB2026-07-13 09:34
137

docker.io/homeassistant/home-assistant:2026.7.1

linux/arm64 docker.io2.33GB2026-07-14 20:45
143

docker.io/homeassistant/home-assistant:2026.8.1

linux/amd64 docker.io2.38GB2026-08-15 09:53
68

docker.io/homeassistant/home-assistant:2026.8.2

linux/amd64 docker.io2.39GB2026-08-23 19:55
12
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×