docker.io/homeassistant/home-assistant:2025.8.2 linux/arm64

docker.io/homeassistant/home-assistant:2025.8.2 - 国内下载镜像源 浏览次数:15 温馨提示: 这是一个 linux/arm64 系统架构镜像
Home Assistant是一个开源的智能家居自动化平台,可以控制和整合各种智能设备,并提供实时监控和远程控制功能。该平台支持多种协议,如MQTT、Z-Wave、Bluetooth等,並且支持各种智能设备,如智能照明、智能锁、智能摄像头等。
源镜像 docker.io/homeassistant/home-assistant:2025.8.2
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2025.8.2-linuxarm64
镜像ID sha256:f105db6879cd3c39cb1c760472cd8a9a9f2e4f25477a6b75d70f6ffe7a97e574
镜像TAG 2025.8.2-linuxarm64
大小 2.01GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /init
工作目录 /config
OS/平台 linux/arm64
浏览量 15 次
贡献者 lu********5@outlook.com
镜像创建 2025-08-15T16:11:06.279673839Z
同步时间 2025-10-06 19:57
更新时间 2025-10-07 10:45
环境变量
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
镜像标签
aarch64: io.hass.arch aarch64: io.hass.base.arch ghcr.io/home-assistant/aarch64-base:3.21: io.hass.base.image python: io.hass.base.name 2025.05.0: io.hass.base.version core: io.hass.type 2025.8.2: io.hass.version The Home Assistant Authors: org.opencontainers.image.authors 2025-08-15 16:06: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 2025.8.2: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2025.8.2-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2025.8.2-linuxarm64  docker.io/homeassistant/home-assistant:2025.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:2025.8.2-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2025.8.2-linuxarm64  docker.io/homeassistant/home-assistant:2025.8.2'

镜像构建历史


# 2025-08-16 00:11:06  0.00B 设置工作目录为/config
WORKDIR /config
                        
# 2025-08-16 00:11:06  56.95MB 执行命令并创建新的镜像层
RUN |2 QEMU_CPU= BUILD_ARCH=aarch64 /bin/ash -o pipefail -c uv pip install         -e ./homeassistant     && python3 -m compileall         homeassistant/homeassistant # buildkit
                        
# 2025-08-16 00:08:47  156.82MB 复制新文件或目录到容器中
COPY . homeassistant/ # buildkit
                        
# 2025-08-16 00:08:42  1.33GB 执行命令并创建新的镜像层
RUN |2 QEMU_CPU= BUILD_ARCH=aarch64 /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
                        
# 2025-08-16 00:07:23  62.86KB 复制新文件或目录到容器中
COPY requirements_all.txt home_assistant_frontend-* home_assistant_intents-* homeassistant/ # buildkit
                        
# 2025-08-16 00:07:22  100.92MB 执行命令并创建新的镜像层
RUN |2 QEMU_CPU= BUILD_ARCH=aarch64 /bin/ash -o pipefail -c uv pip install         --no-build         -r homeassistant/requirements.txt # buildkit
                        
# 2025-08-16 00:07:11  6.39KB 复制新文件或目录到容器中
COPY homeassistant/package_constraints.txt homeassistant/homeassistant/ # buildkit
                        
# 2025-08-16 00:07:11  1.11KB 复制新文件或目录到容器中
COPY requirements.txt homeassistant/ # buildkit
                        
# 2025-08-16 00:07:11  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2025-08-16 00:07:11  39.46MB 执行命令并创建新的镜像层
RUN |2 QEMU_CPU= BUILD_ARCH=aarch64 /bin/ash -o pipefail -c pip3 install uv==0.8.9 # buildkit
                        
# 2025-08-16 00:07:03  5.19MB 执行命令并创建新的镜像层
RUN |2 QEMU_CPU= BUILD_ARCH=aarch64 /bin/ash -o pipefail -c case "${BUILD_ARCH}" in         "aarch64") go2rtc_suffix='arm64' ;;         "armhf") go2rtc_suffix='armv6' ;;         "armv7") go2rtc_suffix='arm' ;;         *) go2rtc_suffix=${BUILD_ARCH} ;;     esac     && curl -L https://github.com/AlexxIT/go2rtc/releases/download/v1.9.9/go2rtc_linux_${go2rtc_suffix} --output /bin/go2rtc     && chmod +x /bin/go2rtc     && go2rtc --version # buildkit
                        
# 2025-08-16 00:07:01  0.00B 定义构建参数
ARG BUILD_ARCH=aarch64
                        
# 2025-08-16 00:07:01  2.76KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2025-08-16 00:07:01  0.00B 定义构建参数
ARG QEMU_CPU
                        
# 2025-08-16 00:07:01  0.00B 设置环境变量 S6_SERVICES_GRACETIME UV_SYSTEM_PYTHON UV_NO_CACHE
ENV S6_SERVICES_GRACETIME=240000 UV_SYSTEM_PYTHON=true UV_NO_CACHE=true
                        
# 2025-05-06 17:08:51  44.40KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2025-05-06 17:08:51  1.76MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c apk add --no-cache         confuse         libftdi1     && apk add --no-cache --virtual .build-dependencies         argp-standalone         build-base         cmake         confuse-dev         doxygen         libftdi1-dev     && git clone https://github.com/telldus/telldus     && cd telldus     && git reset --hard "${TELLDUS_COMMIT}"     && git apply ../telldus-fix-gcc-11-issues.patch     && git apply ../telldus-fix-alpine-3-17-issues.patch     && cd telldus-core     && cmake . -DBUILD_LIBTELLDUS-CORE=ON         -DBUILD_TDADMIN=OFF -DBUILD_TDTOOL=OFF -DGENERATE_MAN=OFF         -DFORCE_COMPILE_FROM_TRUNK=ON     && make -j"$(nproc)"     && make install     && apk del .build-dependencies     && rm -rf         /usr/src/telldus         /usr/src/telldus-fix-gcc-11-issues.patch         /usr/src/telldus-fix-alpine-3-17-issues.patch # buildkit
                        
# 2025-05-06 17:06:38  3.95KB 复制新文件或目录到容器中
COPY patches/telldus-fix-alpine-3-17-issues.patch /usr/src/ # buildkit
                        
# 2025-05-06 17:06:38  2.41KB 复制新文件或目录到容器中
COPY patches/telldus-fix-gcc-11-issues.patch /usr/src/ # buildkit
                        
# 2025-05-06 17:06:38  8.32MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c apk add --no-cache         popt     && apk add --no-cache --virtual .build-dependencies        automake        autoconf        libtool        popt-dev        build-base     && git clone https://github.com/naggety/picotts.git pico     && cd pico/pico     && git reset --hard "${PICOTTS_HASH}"     && ./autogen.sh     && ./configure          --disable-static     && make     && make install     && apk del .build-dependencies     && rm -rf /usr/src/pico # buildkit
                        
# 2025-05-06 17:02:31  2.71MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c apk add --no-cache         eudev-libs         p8-platform     && apk add --no-cache --virtual .build-dependencies         build-base         cmake         eudev-dev         swig         p8-platform-dev         linux-headers     && git clone --depth 1 -b "libcec-${LIBCEC_VERSION}" https://github.com/Pulse-Eight/libcec     && cd libcec     && git apply ../libcec-fix-null-return.patch     && git apply ../libcec-python313.patch     && mkdir build     && cd build     && cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local         -DPYTHON_LIBRARY="/usr/local/lib/libpython3.13.so"         -DPYTHON_INCLUDE_DIR="/usr/local/include/python3.13"         -DHAVE_LINUX_API=1         ..     && make -j"$(nproc)"     && make install     && echo "cec" > "/usr/local/lib/python3.13/site-packages/cec.pth"     && apk del .build-dependencies     && rm -rf         /usr/src/libcec         /usr/src/libcec-fix-null-return.patch         /usr/src/libcec-python313.patch # buildkit
                        
# 2025-05-06 17:00:04  636.00B 复制新文件或目录到容器中
COPY patches/libcec-python313.patch /usr/src/ # buildkit
                        
# 2025-05-06 17:00:04  396.00B 复制新文件或目录到容器中
COPY patches/libcec-fix-null-return.patch /usr/src/ # buildkit
                        
# 2025-05-06 17:00:04  3.84MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c apk add --no-cache         imlib2     && apk add --no-cache --virtual .build-dependencies         build-base         imlib2-dev     && git clone --depth 1 -b "v${SSOCR_VERSION}" https://github.com/auerswal/ssocr     && cd ssocr     && make -j"$(nproc)"     && make install     && apk del .build-dependencies     && rm -rf /usr/src/ssocr # buildkit
                        
# 2025-05-06 16:59:39  0.00B 设置工作目录为/usr/src/
WORKDIR /usr/src/
                        
# 2025-05-06 16:59:39  24.53MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c pip3 install --only-binary=:all:         -r /usr/src/requirements.txt     && rm -f /usr/src/requirements.txt # buildkit
                        
# 2025-05-06 16:59:31  73.00B 复制新文件或目录到容器中
COPY requirements.txt /usr/src/ # buildkit
                        
# 2025-05-06 16:59:31  139.98MB 执行命令并创建新的镜像层
RUN |6 BUILD_ARCH=aarch64 QEMU_CPU= SSOCR_VERSION=2.23.1 LIBCEC_VERSION=6.0.2 PICOTTS_HASH=e3ba46009ee868911fa0b53db672a55f9cc13b1c TELLDUS_COMMIT=2598bbed16ffd701f2a07c99582f057a3decbaf3 /bin/ash -o pipefail -c apk add --no-cache         bluez         bluez-deprecated         bluez-libs         curl         eudev-libs         ffmpeg         iperf3         git         grep         hwdata-usb         libgpiod         libturbojpeg         libpulse         libzbar         mariadb-connector-c         net-tools         nmap         openssh-client         pianobar         pulseaudio-alsa         socat # buildkit
                        
# 2025-05-06 16:59:31  0.00B 定义构建参数
ARG BUILD_ARCH QEMU_CPU SSOCR_VERSION LIBCEC_VERSION PICOTTS_HASH TELLDUS_COMMIT
                        
# 2025-05-06 01:43:32  11.23MB 执行命令并创建新的镜像层
RUN |4 PYTHON_VERSION=3.13.3 PIP_VERSION=25.0.1 GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 QEMU_CPU= /bin/ash -o pipefail -c set -ex;         apk add --no-cache --virtual .fetch-deps openssl;         curl -L -o get-pip.py 'https://bootstrap.pypa.io/get-pip.py';         apk del .fetch-deps;         python get-pip.py         --disable-pip-version-check         --no-cache-dir         pip==${PIP_VERSION}     ;     pip --version;         find /usr/local -depth         \(             -type d -a \( -name test -o -name tests \)         \) -exec rm -rf '{}' +;     rm -f get-pip.py # buildkit
                        
# 2025-05-06 01:43:00  32.00B 执行命令并创建新的镜像层
RUN |4 PYTHON_VERSION=3.13.3 PIP_VERSION=25.0.1 GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 QEMU_CPU= /bin/ash -o pipefail -c cd /usr/local/bin     && ln -s idle3 idle     && ln -s pydoc3 pydoc     && ln -s python3 python     && ln -s python3-config python-config # buildkit
                        
# 2025-05-06 01:43:00  69.11MB 执行命令并创建新的镜像层
RUN |4 PYTHON_VERSION=3.13.3 PIP_VERSION=25.0.1 GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 QEMU_CPU= /bin/ash -o pipefail -c set -ex     && export PYTHON_VERSION=${PYTHON_VERSION}     && apk add --no-cache --virtual .fetch-deps         gnupg         openssl         tar         xz         && 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.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"     && export GNUPGHOME="$(mktemp -d)"     && echo "disable-ipv6" >> "$GNUPGHOME/dirmngr.conf"     && gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "${GPG_KEY}"     && gpg --batch --verify python.tar.xz.asc python.tar.xz     && { command -v gpgconf > /dev/null && gpgconf --kill all || :; }     && rm -rf "$GNUPGHOME" python.tar.xz.asc     && mkdir -p /usr/src/python     && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz     && rm python.tar.xz         && 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         && for i in /usr/src/*.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     && rm -f /usr/src/*.patch # buildkit
                        
# 2025-05-05 21:53:46  5.48KB 复制新文件或目录到容器中
COPY *.patch /usr/src/ # buildkit
                        
# 2025-05-05 21:53:46  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2025-05-05 21:53:46  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-05-05 21:53:46  0.00B 定义构建参数
ARG PYTHON_VERSION PIP_VERSION GPG_KEY QEMU_CPU
                        
# 2025-05-05 21:52:57  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2025-05-05 21:52:57  0.00B 设置工作目录为/
WORKDIR /
                        
# 2025-05-05 21:52:57  152.00B 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2025-05-05 21:52:57  44.84MB 执行命令并创建新的镜像层
RUN |6 BASHIO_VERSION=0.17.0 TEMPIO_VERSION=2024.11.2 S6_OVERLAY_VERSION=3.1.6.2 JEMALLOC_VERSION=5.3.0 QEMU_CPU= BUILD_ARCH=aarch64 /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}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${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-05-05 21:39:43  0.00B 定义构建参数
ARG BUILD_ARCH
                        
# 2025-05-05 21:39:43  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2025-05-05 21:39:43  0.00B 定义构建参数
ARG BASHIO_VERSION TEMPIO_VERSION S6_OVERLAY_VERSION JEMALLOC_VERSION QEMU_CPU
                        
# 2025-05-05 21:39:43  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2025-05-05 21:39:43  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-02-14 11:28:36  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-02-14 11:28:36  8.17MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.3-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:f105db6879cd3c39cb1c760472cd8a9a9f2e4f25477a6b75d70f6ffe7a97e574",
    "RepoTags": [
        "homeassistant/home-assistant:2025.8.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant:2025.8.2-linuxarm64"
    ],
    "RepoDigests": [
        "homeassistant/home-assistant@sha256:cd742b4b3311c7e84a978448860088e734221e9314b73e3931d148d1b081a263",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/home-assistant@sha256:e474df3e48f0cf4df64e0b663342d661a21cd4510bf84d422c2e8119d7907762"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-15T16:11:06.279673839Z",
    "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": "aarch64",
            "io.hass.base.arch": "aarch64",
            "io.hass.base.image": "ghcr.io/home-assistant/aarch64-base:3.21",
            "io.hass.base.name": "python",
            "io.hass.base.version": "2025.05.0",
            "io.hass.type": "core",
            "io.hass.version": "2025.8.2",
            "org.opencontainers.image.authors": "The Home Assistant Authors",
            "org.opencontainers.image.created": "2025-08-15 16:06: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": "2025.8.2"
        },
        "Shell": [
            "/bin/ash",
            "-o",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 2007327153,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0f692a8d133751bfe0d2f54cd9ea22e151494feb61fcabb766427e1b07d23d6a/diff:/var/lib/docker/overlay2/152583dfbf272757d4a70d81258371c1cd65806d03ff8e368a789aa9247548ec/diff:/var/lib/docker/overlay2/22102e48084be3fd87712c3e2ce766e0acb9957ee88ea5904f50ac814f80bef2/diff:/var/lib/docker/overlay2/61d1be0606df542bdbead20e6264298b5daef7778f0c03fd5bb0d273347288ee/diff:/var/lib/docker/overlay2/48d18a879917de7d1dd8841b73170434de97ebea0e0e0c27df71048ab4ab7478/diff:/var/lib/docker/overlay2/49bd21e7895e3334ba7bd2b532de5cc3f4dc227144d1d1a871ef0df07028fc89/diff:/var/lib/docker/overlay2/60e1bfbf88d53a6f3dad20c2d842e75ad158cb214795e3e517f9511de282101e/diff:/var/lib/docker/overlay2/aeab74521fa84512b7fbdac50efb10870ed131211fe184e8744d07adc1c78563/diff:/var/lib/docker/overlay2/e2f53aa0ca2393c083d14bf4340e79a11099c57bc8e9562adf3394c64b94d952/diff:/var/lib/docker/overlay2/56938c2e69c132a9b65b91619f5d0fdfe4e88c38359338ece61f96afa1189763/diff:/var/lib/docker/overlay2/596b887848cd85d501e77971f60a8059e9266e8e6587c7b06ba40968e398f1d4/diff:/var/lib/docker/overlay2/1a10dd5927d14c74127e902afb33bc2cd81bfcf3d000af8d8af7e3cd59e78585/diff:/var/lib/docker/overlay2/2742b4642e82b31e02bb613316fa25cb7e55b89735196f1a1ed2b86eaf7bb1f7/diff:/var/lib/docker/overlay2/43971e0554bccb87333e95255ae36544af44ae8c1873e1dc54a94593b9e8d17b/diff:/var/lib/docker/overlay2/d92a7184aa3b982801540820948872c3a785cd00cd0c96b40186cba4dd16b084/diff:/var/lib/docker/overlay2/1c6fe970fbc00645eae50624aa1c9da1fba10c4604ecb9037b0a796e719c54d1/diff:/var/lib/docker/overlay2/44c6d12dc8c15ef2bd950bb1ae147d4e28dd660d4adc18ac5761c01153331de2/diff:/var/lib/docker/overlay2/3b07533657869ce394ccc7db7a0298310297afbf9052a271b3324f84a668a12b/diff:/var/lib/docker/overlay2/31c551a167434b32fdea4b40eaf77de2efccbde21c443d38d5a88d14aa7feff5/diff:/var/lib/docker/overlay2/4d82537e80f2999ac9b99c3416824ffeb69900e1112864babf85eadf2b79b5ac/diff:/var/lib/docker/overlay2/eaf1f29d4bdfe5bfa18db5cdb21dab99950b9097fd86df773e9a94b3aa251a0f/diff:/var/lib/docker/overlay2/8f2fcbac3b5352a5cdee22eb9ca6a2b0b15cf92d55ccd885b698a0c3522978d8/diff:/var/lib/docker/overlay2/e9171b01943e11feac824146aff2f739cbe43fdfd635a900bb7270636a92de62/diff:/var/lib/docker/overlay2/41f1b999b61f1ef994d9ed0ec0e169db95b80eb5da44f91c80f159831aff3886/diff:/var/lib/docker/overlay2/44605834a9a41f995aad193d8d4440d42598634c96c25683c20b0968368f461e/diff:/var/lib/docker/overlay2/1ea147b7715ad0967bf2b12c15f333e2109118934a188cca64f6d1f1babf58fd/diff:/var/lib/docker/overlay2/2d18d3e4c7d430de3b48622504f77bac88101282c8254408c005c074e1efc926/diff:/var/lib/docker/overlay2/996b36ac11768981d94461d09e037b02556686ccb48ad12f9d41046a3ea2d7fa/diff:/var/lib/docker/overlay2/7b74014408f0883fbf091a868a407cfca417c225a71a8d0057f4bc17deb0097a/diff:/var/lib/docker/overlay2/aa2c6f5123416e3a432448714b9a5bdc38049070e7c9cac47b032009779dc4fc/diff:/var/lib/docker/overlay2/156bf79e0c35707c9912389028d3b20d7b610f4dd3b11d6eec956195f2e243e9/diff:/var/lib/docker/overlay2/487ba58c0fd47ee0d6f44d59c29ea6e4afdb6474928f31b42985a716aa1b0936/diff",
            "MergedDir": "/var/lib/docker/overlay2/4c6ff5a119fee9d9612757b6caa472951d1050cc9fcbdda88b7de72a782328aa/merged",
            "UpperDir": "/var/lib/docker/overlay2/4c6ff5a119fee9d9612757b6caa472951d1050cc9fcbdda88b7de72a782328aa/diff",
            "WorkDir": "/var/lib/docker/overlay2/4c6ff5a119fee9d9612757b6caa472951d1050cc9fcbdda88b7de72a782328aa/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a16e98724c05975ee8c40d8fe389c3481373d34ab20a1cf52ea2accc43f71f4c",
            "sha256:1c81043dd159272fb6b609796094b4f6301e4258ef9dcfb62f23444255f1ab2f",
            "sha256:bdae3ea093e7b8cbe23dc4a112b066692576425153f3956963d4938e5029b7f3",
            "sha256:298b3bece43252d1f3f6e1330fec90b93d09f0f4e6497ea28570b07a1093f4b0",
            "sha256:8317ddc26567ea6b59ce31212d229ad232ad3a589e6e1502240c746bc45ddf79",
            "sha256:29bac5d2e2bc3ceb5c4ffd36b755a648698b7fadec4bd3543485c7c72eb3c723",
            "sha256:1162068e88bc711c80e3725821405412cdc8bd5ca1cce4da77a3558a4da2d108",
            "sha256:1e9a410cf086b1b03c516cc0f2ad55ee43e0a2d982aa7fed644ee12e5c067eb1",
            "sha256:a66e76d6715130cb2f67a5f3718672cfc1a1b1a2388eda2fb97427de70241bf1",
            "sha256:c6c20feb0dc5105a574da9ce02b4698f66d839faa9e53efc9b6436d05e015fd7",
            "sha256:c11294733e4c6a2d643babf39502505fc8427ed9b6ea77d5cf3f66a2e9c5dac7",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:c946652035f4e82d0205e00ec9e675475920b082ce45a728f54de46acc68e5af",
            "sha256:2b6bf4239c25c41c1f821a6b0579177c6990b42805816a917414fc279d67bed8",
            "sha256:e1c7cc58dec2f1a924904b6f1b9b998b2c34fc2547166a20da5221cf3ef4d94f",
            "sha256:3c58cda9ddfca629fe94c86acd62c652dee617b766393a8abde663e5855ac123",
            "sha256:a58b535d6c6be699d389985815dfb8183858f9c85a3b092d50d3918119b67ac8",
            "sha256:696e0fcae137ba279061bde77b0ffa112c75ec95c3355029862504e198c4abb0",
            "sha256:f4b3fbce5c20f60f37b37df0540da3a39534a413015962bd7570cc4e7d3ecfd5",
            "sha256:86baa4f2343a49f0835e38dbf0b3f0137d5351fb6c6ba2e25499f1b75762edaf",
            "sha256:4eedf4a59de37b9b4c03f2b4781d6dcbd75caffa58a2944c643a294fd56f4720",
            "sha256:3bea7532b4cb7434bce43a49859d38cc5d54cd6ea4f330128a79adb618f0f1e8",
            "sha256:b7b0bb6c9ea3c52a54a138d7650c65eec07160cbbb2cacc4c048cb0217dd17f3",
            "sha256:7cd50987a2d49c1bbdc71e2ae38b7f930e9f9e758812606b0ddbe3ec51b58a86",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:e4f8313f4d3cca83e6504bb8963d8b8944f7a36783d7155a112366bc79aeb948",
            "sha256:41af2fcfe647d4ac487ebb8c22bf4defb50090a2c0761341689c96eb959b3c69",
            "sha256:72c36bff7adc155c8e653e238e68ef4f535f8c75da61d4707af8ae5b19ce0479",
            "sha256:33f475856013c75116c68354bf5da00c1f2c975ce42ea160d116b3c0c58a28d9",
            "sha256:22ce1c41401cba7193b8057ad6a9f96be32d40c2d146b44688cdcb9d39a704ff",
            "sha256:44d5fbfc8c8ccb592a3e13b009e6cba1f965b9313e297574084eca62681416be",
            "sha256:812b4520f5b65c4acb6111aa1116d69ffc10dfe2c7cc7d21a7a4f006a1ab86a5",
            "sha256:f29d3cf982c2cd88b30ff43bb090e9f18eb51396cba334c0c770646eff669df6"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-06T19:56:24.443165908+08:00"
    }
}

更多版本

docker.io/homeassistant/home-assistant:stable

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

docker.io/homeassistant/home-assistant:2024.8

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

docker.io/homeassistant/home-assistant:stable

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

docker.io/homeassistant/home-assistant:2024.10

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

docker.io/homeassistant/home-assistant:2024.11

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

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

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

docker.io/homeassistant/home-assistant:2024.12

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

docker.io/homeassistant/home-assistant:2024.12

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

docker.io/homeassistant/home-assistant:2024.12.5

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

docker.io/homeassistant/home-assistant:2025.1.0

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

docker.io/homeassistant/home-assistant:2025.1

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

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

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

docker.io/homeassistant/home-assistant:2025.2

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

docker.io/homeassistant/home-assistant:2025.2.5

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

docker.io/homeassistant/home-assistant:2025.3

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

docker.io/homeassistant/home-assistant:latest

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

docker.io/homeassistant/home-assistant:2025.3.3

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

docker.io/homeassistant/home-assistant:2025.1.0

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

docker.io/homeassistant/home-assistant:2025.6.3

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

docker.io/homeassistant/home-assistant:2025.7

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

docker.io/homeassistant/home-assistant:2025.7.2

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

docker.io/homeassistant/home-assistant:2025.7

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

docker.io/homeassistant/home-assistant:dev

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

docker.io/homeassistant/home-assistant:2025.8

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

docker.io/homeassistant/home-assistant:2025.8.1

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

docker.io/homeassistant/home-assistant:2025.8.2

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

docker.io/homeassistant/home-assistant:2025.9.0

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

docker.io/homeassistant/home-assistant:2025.9.4

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

docker.io/homeassistant/home-assistant:2025.8.2

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