docker.io/ponyix/xiaomiev-mate:web-v1.0.6 linux/amd64

docker.io/ponyix/xiaomiev-mate:web-v1.0.6 - 国内下载镜像源 浏览次数:17 2518406311o 贡献同步

该镜像提供小米电动车(Xiaomi EV Mate)相关的管理与控制功能,支持车辆状态查询、数据同步等操作,方便用户通过容器化方式使用小米电动车的辅助服务。

源镜像 docker.io/ponyix/xiaomiev-mate:web-v1.0.6
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6
镜像ID sha256:8cd2c7feef7af4148a71e301f610aff2fe28e77bea03bdd6a62f2328d599ed15
镜像TAG web-v1.0.6
大小 64.99MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 17 次
贡献者
avatar
2518406311o
镜像创建 2026-05-25T11:41:46.056301584Z
同步时间 2026-06-10 22:46
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.30.2 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.9 NJS_RELEASE=1 ACME_VERSION=0.4.1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2026-05-25T11:40:46Z: org.opencontainers.image.created ae9053f: org.opencontainers.image.revision https://github.com/Ponyix/xiaomiev-mate: org.opencontainers.image.source xiaomiev-mate-web: org.opencontainers.image.title Ponyix: org.opencontainers.image.vendor v1.0.6: org.opencontainers.image.version
镜像安全扫描 查看Trivy扫描报告

系统OS: alpine 3.23.4 扫描引擎: Trivy 扫描时间: 2026-06-10 22:46

低危漏洞:0 中危漏洞:0 高危漏洞:1 严重漏洞:0

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6  docker.io/ponyix/xiaomiev-mate:web-v1.0.6

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6  docker.io/ponyix/xiaomiev-mate:web-v1.0.6

Shell快速替换命令

sed -i 's#ponyix/xiaomiev-mate:web-v1.0.6#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6  docker.io/ponyix/xiaomiev-mate:web-v1.0.6'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6  docker.io/ponyix/xiaomiev-mate:web-v1.0.6'

镜像构建历史


# 2026-05-25 19:41:46  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-05-25 19:41:46  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2026-05-25 19:41:46  987.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2026-05-25 19:41:45  2.73MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2026-05-23 02:31:01  49.52MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE}         nginx-module-acme=${NGINX_VERSION}.${ACME_VERSION}-r${PKG_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             apk add -X "https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 libxslt-dev                 gd-dev                 geoip-dev                 libedit-dev                 bash                 alpine-sdk                 findutils                 curl                 cargo                 clang-libclang             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/60789259bfab36b1669a414881a9d002fd246d6b.tar.gz                 && PKGOSSCHECKSUM=\"9282a0265c921af3e2d5760cbdc06aae65e6efb145ed266fe02102326174a9e9405f6492979372556c14e2f4f8cf66a48c338d054d0ece375a1c41f343f244cc *60789259bfab36b1669a414881a9d002fd246d6b.tar.gz\"                 && if [ \"\$(openssl sha512 -r 60789259bfab36b1669a414881a9d002fd246d6b.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf 60789259bfab36b1669a414881a9d002fd246d6b.tar.gz                 && cd pkg-oss-60789259bfab36b1669a414881a9d002fd246d6b                 && cd alpine                 && export BUILDTARGET=\"module-geoip module-image-filter module-njs module-xslt module-acme\"                 && if [ \"\$(apk --print-arch)\" = \"armhf\" ]; then BUILDTARGET=\"\$( echo \$BUILDTARGET | sed 's,module-acme,,' )\"; fi                 && make \$BUILDTARGET                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && if [ "$apkArch" = "armhf" ]; then nginxPackages="$( echo $nginxPackages | sed 's,nginx-module-acme=.*,,')"; fi             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache curl ca-certificates # buildkit
                        
# 2026-05-23 02:31:01  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.4.1
                        
# 2026-05-23 02:31:01  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2026-05-23 02:31:01  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.9
                        
# 2026-05-23 02:25:13  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-05-23 02:25:13  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-05-23 02:25:13  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-05-23 02:25:13  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-05-23 02:25:13  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-05-23 02:25:13  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-05-23 02:25:13  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-05-23 02:25:13  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-05-23 02:25:13  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-05-23 02:25:13  4.28MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && addgroup -g 101 -S nginx     && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             set -x             && KEY_SHA512="e09fa32f0a0eab2b879ccbbc4d0e4fb9751486eedda75e35fac65802cc9faa266425edf83e261137a2f4d16281ce2c1a5f4502930fe75154723da014214f0655"             && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub             && if echo "$KEY_SHA512 */tmp/nginx_signing.rsa.pub" | sha512sum -c -; then                 echo "key verification succeeded!";                 mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/;             else                 echo "key verification failed!";                 exit 1;             fi             && DEPS=$(apk query --summarize depends --recursive --no-cache                        --repository "@nginxorg https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main"                        ${nginxPackages/=/@nginxorg=})             && apk add --no-cache $DEPS             && apk add --repositories-file /dev/null -X "https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 bash                 alpine-sdk                 findutils                 curl             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/60789259bfab36b1669a414881a9d002fd246d6b.tar.gz                 && PKGOSSCHECKSUM=\"9282a0265c921af3e2d5760cbdc06aae65e6efb145ed266fe02102326174a9e9405f6492979372556c14e2f4f8cf66a48c338d054d0ece375a1c41f343f244cc *60789259bfab36b1669a414881a9d002fd246d6b.tar.gz\"                 && if [ \"\$(openssl sha512 -r 60789259bfab36b1669a414881a9d002fd246d6b.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf 60789259bfab36b1669a414881a9d002fd246d6b.tar.gz                 && cd pkg-oss-60789259bfab36b1669a414881a9d002fd246d6b                 && cd alpine                 && make base                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && DEPS=$(apk query --summarize depends --recursive --no-cache                        --repository "@nginxorg ${tempDir}/packages/alpine/"                        ${nginxPackages/=/@nginxorg=})             && apk add --no-cache $DEPS             && apk add --repositories-file /dev/null -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache gettext-envsubst     && apk add --no-cache tzdata     && ln -sf /dev/stdout /var/log/nginx/access.log     && ln -sf /dev/stderr /var/log/nginx/error.log     && mkdir /docker-entrypoint.d # buildkit
                        
# 2026-05-23 02:25:13  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2026-05-23 02:25:13  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2026-05-23 02:25:13  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.30.2
                        
# 2026-05-23 02:25:13  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2026-04-16 04:01:40  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-04-16 04:01:40  8.45MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.4-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:8cd2c7feef7af4148a71e301f610aff2fe28e77bea03bdd6a62f2328d599ed15",
    "RepoTags": [
        "ponyix/xiaomiev-mate:web-v1.0.6",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.6"
    ],
    "RepoDigests": [
        "ponyix/xiaomiev-mate@sha256:7e4ec75a1ce526f68b8305b98c8c36e1f36ad9ec15323c2141e596493fe8959f",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate@sha256:fbdc904b2fdd9de005db89b447f3d41b2c76fb92b05edd5a70c62782ddd56e74"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-05-25T11:41:46.056301584Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NGINX_VERSION=1.30.2",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.9",
            "NJS_RELEASE=1",
            "ACME_VERSION=0.4.1"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "2026-05-25T11:40:46Z",
            "org.opencontainers.image.revision": "ae9053f",
            "org.opencontainers.image.source": "https://github.com/Ponyix/xiaomiev-mate",
            "org.opencontainers.image.title": "xiaomiev-mate-web",
            "org.opencontainers.image.vendor": "Ponyix",
            "org.opencontainers.image.version": "v1.0.6"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 64989504,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/e238790e82c97ca8569e821b68e4d8541583796d026269e709c41b5acda6b9f8/diff:/var/lib/docker/overlay2/b6e27cd08ccb2316f6a10aaf12aac7531130a110d2f67c2272de6ab77ff57c34/diff:/var/lib/docker/overlay2/a1e07807ee31b5bca4a476d916f40e879e7fb0ff81097f1ffa4f3675c10eb6b6/diff:/var/lib/docker/overlay2/c5246c28028fbd26ad540cab99ed34726683e2f076f428bfda24fbc8674c289c/diff:/var/lib/docker/overlay2/3a4d41fbb03dd193b1f7ca5e0dfbadac3c224e2a87077cd222c3e89ec88a7de1/diff:/var/lib/docker/overlay2/bafd0429d1772c01099ff07b6694acf03a1706f3c7dd796aa8d97750eca9f576/diff:/var/lib/docker/overlay2/23902addbaf656010186ed33597f5e63ddab936b4a6a6d0713477d53177b48c8/diff:/var/lib/docker/overlay2/608c65b636d0b4668ef4bf93a8b653deefece016d35f53ea5d6e7a6e2dde1f49/diff:/var/lib/docker/overlay2/9a1ef5a883ef2cbf9a0d960bba5d783f7ecd7d9d3ba8bb8cd5537b33d65a942f/diff",
            "MergedDir": "/var/lib/docker/overlay2/b1aea87d5f84a040e3a6d312c17dd8ef8e12568f9e469a57faf8fee57ffe1360/merged",
            "UpperDir": "/var/lib/docker/overlay2/b1aea87d5f84a040e3a6d312c17dd8ef8e12568f9e469a57faf8fee57ffe1360/diff",
            "WorkDir": "/var/lib/docker/overlay2/b1aea87d5f84a040e3a6d312c17dd8ef8e12568f9e469a57faf8fee57ffe1360/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:29df493baa13de438d6d2ece3a8333032e0b7b9b9d8cce4ee82194da255f61e1",
            "sha256:5983c4f65fea9081d2b717512f73426ae61371d06cb3028337b9a19e090fcba5",
            "sha256:e49699576069e3ae9f16b792dc51cf1b70290243c574d4f772b41c4722b0e7dc",
            "sha256:7bb0c70ce7eff560f61c606feba9d0c317dcf2567c023b59d3fbea09b270f9b3",
            "sha256:8e1d8c1667ffb146e37fa96603cb09ba129fae84de55e904c4020259e1c978e6",
            "sha256:1bd126498c725f44d107c93dcf2f1d93e3d1af234b08bdb0c4a4e9037fce326e",
            "sha256:e0d08a24a33fdfc0206588d16c6694e19d29e16987cf73d195d2cc5a36c7b50c",
            "sha256:dacf3297ad34ca4cd439d22fe3c2aba5eade19f23ec667c2a33835759201ba8e",
            "sha256:b878569010f871ec818f8d127b4f5f63113eafdbc1afa87b1089302a17d292c0",
            "sha256:6895bb0590671d6cab21648509c9cf4526aafa49a2be3abc8ea3bd90d6c18f6d"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-06-10T22:46:51.113012627+08:00"
    }
}

更多版本

docker.io/ponyix/xiaomiev-mate:web-latest

linux/amd64 docker.io64.63MB2026-03-09 10:49
156

docker.io/ponyix/xiaomiev-mate:web-latest

linux/arm64 docker.io63.92MB2026-03-09 10:50
132

docker.io/ponyix/xiaomiev-mate:backend-latest

linux/arm64 docker.io394.25MB2026-03-09 10:51
80

docker.io/ponyix/xiaomiev-mate:backend-latest

linux/amd64 docker.io381.32MB2026-03-09 10:52
142

docker.io/ponyix/xiaomiev-mate:backend-v1.0.0

linux/amd64 docker.io381.38MB2026-03-19 11:18
128

docker.io/ponyix/xiaomiev-mate:backend-v1.0.0

linux/arm64 docker.io394.30MB2026-03-19 11:20
83

docker.io/ponyix/xiaomiev-mate:web-v1.0.0

linux/amd64 docker.io64.71MB2026-03-19 11:20
123

docker.io/ponyix/xiaomiev-mate:web-v1.0.0

linux/arm64 docker.io64.01MB2026-03-19 11:21
72

docker.io/ponyix/xiaomiev-mate:web-v1.0.1

linux/amd64 docker.io64.71MB2026-03-19 18:10
122

docker.io/ponyix/xiaomiev-mate:web-v1.0.1

linux/arm64 docker.io64.01MB2026-03-19 18:11
85

docker.io/ponyix/xiaomiev-mate:backend-v1.0.3

linux/amd64 docker.io381.57MB2026-04-23 16:58
80

docker.io/ponyix/xiaomiev-mate:backend-v1.0.3

linux/arm64 docker.io394.50MB2026-04-23 17:00
63

docker.io/ponyix/xiaomiev-mate:web-v1.0.3

linux/amd64 docker.io64.86MB2026-04-23 17:00
93

docker.io/ponyix/xiaomiev-mate:web-v1.0.3

linux/arm64 docker.io64.24MB2026-04-23 17:01
53

docker.io/ponyix/xiaomiev-mate:web-v1.0.6

linux/amd64 docker.io64.99MB2026-06-10 22:46
16

docker.io/ponyix/xiaomiev-mate:backend-v1.0.6

linux/amd64 docker.io382.51MB2026-06-10 22:52
16