广告图片

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

docker.io/ponyix/xiaomiev-mate:web-v1.0.3 - 国内下载镜像源 浏览次数:12 温馨提示: 这是一个 linux/arm64 系统架构镜像

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

源镜像 docker.io/ponyix/xiaomiev-mate:web-v1.0.3
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3-linuxarm64
镜像ID sha256:9929c74d69e6fb940921e48b86740d961f81cfdd69d9ed407a7350c748a12f88
镜像TAG web-v1.0.3-linuxarm64
大小 64.24MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/arm64
浏览量 12 次
贡献者
镜像创建 2026-04-23T08:43:58.3578805Z
同步时间 2026-04-23 17:01
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.30.0 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.6 NJS_RELEASE=1 ACME_VERSION=0.3.1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2026-04-23T08:41:27Z: org.opencontainers.image.created 35babce: 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.3: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#ponyix/xiaomiev-mate:web-v1.0.3#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3-linuxarm64#' 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.3-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3-linuxarm64  docker.io/ponyix/xiaomiev-mate:web-v1.0.3'

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.3-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3-linuxarm64  docker.io/ponyix/xiaomiev-mate:web-v1.0.3'

镜像构建历史


# 2026-04-23 16:43:58  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-04-23 16:43:58  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2026-04-23 16:43:58  987.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2026-04-23 16:43:58  2.68MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2026-04-16 05:34:04  48.34MB 执行命令并创建新的镜像层
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/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"a090f4aecd628ab4b4124376efa55f617a272f9bae4e306df9b659b1b850133b0806cac31fb2a72faf1cc36bde8f5a19f4f5da5fd73502d3bbe374697920344e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && 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-04-16 05:34:04  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.3.1
                        
# 2026-04-16 05:34:04  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2026-04-16 05:34:04  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.6
                        
# 2026-04-16 04:16:22  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-04-16 04:16:22  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-04-16 04:16:22  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-04-16 04:16:22  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-04-16 04:16:22  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:16:22  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:16:22  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:16:22  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:16:22  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-04-16 04:16:22  4.51MB 执行命令并创建新的镜像层
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/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"a090f4aecd628ab4b4124376efa55f617a272f9bae4e306df9b659b1b850133b0806cac31fb2a72faf1cc36bde8f5a19f4f5da5fd73502d3bbe374697920344e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && 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-04-16 04:16:22  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2026-04-16 04:16:22  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2026-04-16 04:16:22  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.30.0
                        
# 2026-04-16 04:16:22  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2026-04-16 04:01:25  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-04-16 04:01:25  8.70MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.4-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:9929c74d69e6fb940921e48b86740d961f81cfdd69d9ed407a7350c748a12f88",
    "RepoTags": [
        "ponyix/xiaomiev-mate:web-v1.0.3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate@sha256:a02c4ff04dd4f3ca43fc22b765376caac2ebae1a117a7ff3c50701b79ab290ad"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-23T08:43:58.3578805Z",
    "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.0",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.6",
            "NJS_RELEASE=1",
            "ACME_VERSION=0.3.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-04-23T08:41:27Z",
            "org.opencontainers.image.revision": "35babce",
            "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.3"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 64235565,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/b67290533f173d4d44ea0e239e4bb6c5508779944eac46221c78e20e2d4a394d/diff:/var/lib/docker/overlay2/0cd86c4968111e7a301fced1aca17f779effb5368b43f836895481e35907c85a/diff:/var/lib/docker/overlay2/8e91cc273016a5f19bf0d59e699803d892931f252c1f81b9543c3da37771243a/diff:/var/lib/docker/overlay2/16f3675bb28681dd7e91c275faea8e99f8f6c94000d3eff3a1a5ca35454a494f/diff:/var/lib/docker/overlay2/3f9bd49d355a8fd00c40000ccefda78ff303b557a186cb9cf689b13077bc2555/diff:/var/lib/docker/overlay2/d57342b2688050c277573be93084aaf37cd4cd3ab765a825eccec8275c35d0c3/diff:/var/lib/docker/overlay2/20c88fb545e66e02599d8d6eabcfce0906867183761d5a26e54fb99c97ae6653/diff:/var/lib/docker/overlay2/4d89a031895ec7ca8552147aa909451b77a01a5c384420f575fc864704007a8b/diff:/var/lib/docker/overlay2/c572f27f292e965ff60d4cc5b5d20291d215e925ac6f172cdfd6745e66b0c883/diff",
            "MergedDir": "/var/lib/docker/overlay2/1ad8dcf3d1b72d1d765259a676cd4e4c6e940950398cede4301dede52e71e62a/merged",
            "UpperDir": "/var/lib/docker/overlay2/1ad8dcf3d1b72d1d765259a676cd4e4c6e940950398cede4301dede52e71e62a/diff",
            "WorkDir": "/var/lib/docker/overlay2/1ad8dcf3d1b72d1d765259a676cd4e4c6e940950398cede4301dede52e71e62a/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a8d26d037006414043b277ecb95287692d0960219289d9e27b0bcea0ce233b02",
            "sha256:77274be4043bbc1349f7470685c06470b7c3cc064fced7b630015a4962db1d76",
            "sha256:1fecc8e8f36fbf575e2f9c622a1c5248e417f35c15d3c12886e2af60690fad61",
            "sha256:978f52b796e1fab968df08bb2eeceacad4285ecd212f1c9b3fad418c8532e6a1",
            "sha256:71a9421fd05d469de4d20bf910fb29439976988c9a709564f243393ba8058957",
            "sha256:d4f734b7d1c6c0c56023eef84a2e24abf0852830ff1e96bb5440a964c4495684",
            "sha256:65c08e546079e7fb3d9cca0f99dbd1c7c1643f7fc26a4d5821611841d3b2990d",
            "sha256:ac45a1fbc4ddc23ac3adedca185fae8a60bc9a95866b5a351768b4759979afea",
            "sha256:eef3856018a8cecadffcb6c113ba7fceb63fb2c21894f9e64b222e0df494ac38",
            "sha256:c9bb6220f2457ed233264295bc3fed4af3f55681d48b88a567b1a59df87e16af"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-23T17:01:52.897076614+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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