logo
docker.io/homeassistant/amd64-addon-configurator:6.0.0
linux/amd64 docker.io

Home Assistant amd64架构的配置器附加组件,用于在线编辑Home Assistant的配置文件(如YAML文件),方便用户管理和修改Home Assistant的各项设置,是Home Assistant生态中简化配置流程的工具。

17
浏览次数
118.75MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0
源镜像
docker.io/homeassistant/amd64-addon-configurator:6.0.0
镜像ID
sha256:5a44e5829044e255302f04f01c3592f1c2e2c835fada054374063a2db5ca5d98
镜像 TAG
6.0.0
镜像大小
118.75MB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/init
工作目录
/
OS/平台
linux/amd64
镜像创建
2026-04-08T09:18:35.298613128Z
同步时间
2026-07-18 19:36
浏览量
17 次
贡献者
⚙️ 环境变量 8
KeyValue
PATH=/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
UV_EXTRA_INDEX_URL=https://wheels.home-assistant.io/musllinux-index/ 6
PIP_BREAK_SYSTEM_PACKAGES=1 7
🏷️ 镜像标签 13
KeyValue
amd64 io.hass.arch
amd64 io.hass.base.arch
alpine:3.23 io.hass.base.image
alpine io.hass.base.name
2026.03.1 io.hass.base.version
Simple browser-based file editor for Home Assistant io.hass.description
File editor io.hass.name
addon io.hass.type
https://github.com/home-assistant/addons/tree/master/configurator io.hass.url
6.0.0 io.hass.version
2026-04-08 09:18:28+00:00 org.opencontainers.image.created
https://github.com/home-assistant/docker-base org.opencontainers.image.source
6.0.0 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.23.3 Trivy 2026-07-18 19:36 查看完整报告
28
低危 LOW
95
中危 MEDIUM
63
高危 HIGH
5
严重 CRITICAL
受影响目标 (3)
docker.io/homeassistant/amd64-addon-configurator:6.0.0 (alpine 3.23.3) alpine Python python-pkg usr/bin/tempio gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0  docker.io/homeassistant/amd64-addon-configurator:6.0.0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0  docker.io/homeassistant/amd64-addon-configurator:6.0.0

Shell快速替换命令

sed -i 's#homeassistant/amd64-addon-configurator:6.0.0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0  docker.io/homeassistant/amd64-addon-configurator:6.0.0'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0  docker.io/homeassistant/amd64-addon-configurator:6.0.0'

镜像构建历史


# 2026-04-08 17:18:35  0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "curl --fail http://127.0.0.1:8099 || exit 1"] "0s" "0s" "0s" "0s" '\x00'}
                        
# 2026-04-08 17:18:35  3.11KB 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-04-08 17:18:35  72.49MB 执行命令并创建新的镜像层
RUN |2 BUILD_ARCH=amd64 CONFIGURATOR_VERSION=0.6.0 /bin/ash -o pipefail -c apk add --no-cache         git         openssh-client         py3-pip         python3     && pip3 install         hass-configurator=="${CONFIGURATOR_VERSION}"         && find /usr/local         \( -type d -a -name test -o -name tests -o -name '__pycache__' \)         -o \( -type f -a -name '*.pyc' -o -name '*.pyo' \)         -exec rm -rf '{}' + # buildkit
                        
# 2026-04-08 17:18:35  0.00B 定义构建参数
ARG CONFIGURATOR_VERSION=0.6.0
                        
# 2026-04-08 17:18:35  0.00B 定义构建参数
ARG BUILD_ARCH=amd64
                        
# 2026-04-08 17:18:35  0.00B 设置环境变量 PIP_BREAK_SYSTEM_PACKAGES
ENV PIP_BREAK_SYSTEM_PACKAGES=1
                        
# 2026-03-18 01:29:18  0.00B 添加元数据标签
LABEL io.hass.type=base io.hass.base.name=alpine
                        
# 2026-03-18 01:29:18  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2026-03-18 01:29:18  0.00B 设置工作目录为/
WORKDIR /
                        
# 2026-03-18 01:29:18  152.00B 复制新文件或目录到容器中
COPY rootfs / # buildkit
                        
# 2026-03-18 01:29:18  37.82MB 执行命令并创建新的镜像层
RUN |5 TARGETARCH=amd64 BASHIO_VERSION=0.17.5 TEMPIO_VERSION=2024.11.2 S6_OVERLAY_VERSION=3.2.2.0 JEMALLOC_VERSION=5.3.0 /bin/ash -o pipefail -c set -x     && if [ -z "${TARGETARCH}" ]; then             echo "TARGETARCH is not set, please use Docker BuildKit for the build." && exit 1;         fi     && case "${TARGETARCH}" in             amd64) TEMPIO_ARCH="amd64"; S6_ARCH="x86_64" ;;             arm64) TEMPIO_ARCH="aarch64"; S6_ARCH="aarch64" ;;             *) echo "Unsupported TARGETARCH: ${TARGETARCH}" && exit 1 ;;         esac     && 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         && 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_${TEMPIO_ARCH}"     && chmod a+x /usr/bin/tempio         && apk del .build-deps     && rm -rf /usr/src/* # buildkit
                        
# 2026-03-18 01:28:06  0.00B 定义构建参数
ARG JEMALLOC_VERSION=5.3.0
                        
# 2026-03-18 01:28:06  0.00B 定义构建参数
ARG S6_OVERLAY_VERSION=3.2.2.0
                        
# 2026-03-18 01:28:06  0.00B 定义构建参数
ARG TEMPIO_VERSION=2024.11.2
                        
# 2026-03-18 01:28:06  0.00B 定义构建参数
ARG BASHIO_VERSION=0.17.5
                        
# 2026-03-18 01:28:06  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2026-03-18 01:28:06  0.00B 设置工作目录为/usr/src
WORKDIR /usr/src
                        
# 2026-03-18 01:28:06  0.00B 
SHELL [/bin/ash -o pipefail -c]
                        
# 2026-03-18 01:28:06  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/
                        
# 2026-01-28 09:18:04  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-01-28 09:18:04  8.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.3-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:5a44e5829044e255302f04f01c3592f1c2e2c835fada054374063a2db5ca5d98",
    "RepoTags": [
        "homeassistant/amd64-addon-configurator:6.0.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator:6.0.0"
    ],
    "RepoDigests": [
        "homeassistant/amd64-addon-configurator@sha256:016716ae746e8612fb7ab1be0e88d83e3b7f5dada3f418288a4ef0c3bfcf9a7c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/homeassistant/amd64-addon-configurator@sha256:016716ae746e8612fb7ab1be0e88d83e3b7f5dada3f418288a4ef0c3bfcf9a7c"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-08T09:18:35.298613128Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "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/",
            "PIP_BREAK_SYSTEM_PACKAGES=1"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "curl --fail http://127.0.0.1:8099 || exit 1"
            ]
        },
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/init"
        ],
        "OnBuild": null,
        "Labels": {
            "io.hass.arch": "amd64",
            "io.hass.base.arch": "amd64",
            "io.hass.base.image": "alpine:3.23",
            "io.hass.base.name": "alpine",
            "io.hass.base.version": "2026.03.1",
            "io.hass.description": "Simple browser-based file editor for Home Assistant",
            "io.hass.name": "File editor",
            "io.hass.type": "addon",
            "io.hass.url": "https://github.com/home-assistant/addons/tree/master/configurator",
            "io.hass.version": "6.0.0",
            "org.opencontainers.image.created": "2026-04-08 09:18:28+00:00",
            "org.opencontainers.image.source": "https://github.com/home-assistant/docker-base",
            "org.opencontainers.image.version": "6.0.0"
        },
        "Shell": [
            "/bin/ash",
            "-o",
            "pipefail",
            "-c"
        ]
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 118749539,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/701d90e1210195bad0fd65d82fbbb8e8ce6da13420e40a99b747804cd36a268d/diff:/var/lib/docker/overlay2/32e1ec45897070603b06975d5041807364ea029c94a5f3a7f33ac7be1b79d3f7/diff:/var/lib/docker/overlay2/75a81a5d9f115336970c74a99a38a4e9686dac12420612bef284ce645fda0032/diff:/var/lib/docker/overlay2/1cd620ffa399c14415f7a8e18868f5cebd3370ba70b5f161700797d7ae6a9f70/diff:/var/lib/docker/overlay2/8eef1d5fcf04e52d797921998104ffe67410f76b3462939494a7b5facee7ee6c/diff",
            "MergedDir": "/var/lib/docker/overlay2/5fe6d261eb16a14ca79d803702c5b8d790557e919dde50ec062ee491788efa96/merged",
            "UpperDir": "/var/lib/docker/overlay2/5fe6d261eb16a14ca79d803702c5b8d790557e919dde50ec062ee491788efa96/diff",
            "WorkDir": "/var/lib/docker/overlay2/5fe6d261eb16a14ca79d803702c5b8d790557e919dde50ec062ee491788efa96/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:989e799e634906e94dc9a5ee2ee26fc92ad260522990f26e707861a5f52bf64e",
            "sha256:3d4a464e658a7ce30658effd8d7c36a7e7becb942689c2e72371ccda89460837",
            "sha256:b5c6375396a97e13253975128fdf94c78a76ac01f2d909fc5100da28e0b47410",
            "sha256:d8811fae8af77537491d5cd42e1e6c94ef4e7bb7eb6b0c93cbb4e07c3258a084",
            "sha256:58f96177601c061b0983a7f27b298d890d7d99e8c207571e887cf3adb5f2da7a",
            "sha256:62e92aced5cd2249ebd9bfaa6b05fd0bdc22aab5764aed91de9632aedf1b9201"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-18T19:36:13.252029429+08:00"
    }
}

更多版本

docker.io/homeassistant/amd64-addon-configurator:6.0.0

linux/amd64 docker.io118.75MB2026-07-18 19:36
16
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×