广告图片

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

docker.io/ponyix/xiaomiev-mate:web-v1.0.3 - 国内下载镜像源 浏览次数:11

该镜像提供小米电动车(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
镜像ID sha256:8c11c57da0429a395c00b74ab0e8f20960c4d55255e937cd035fc3e8621399c3
镜像TAG web-v1.0.3
大小 64.86MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2026-04-23T08:43:58.2855115Z
同步时间 2026-04-23 17:00
开放端口
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
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3  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
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3  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#' 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 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3  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 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.3  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:19:05  49.44MB 执行命令并创建新的镜像层
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:19:05  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.3.1
                        
# 2026-04-16 05:19:05  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2026-04-16 05:19:05  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.6
                        
# 2026-04-16 04:17:53  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-04-16 04:17:53  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-04-16 04:17:53  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-04-16 04:17:53  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-04-16 04:17:53  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:17:53  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:17:53  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:17:53  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-04-16 04:17:53  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-04-16 04:17:53  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/${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:17:53  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2026-04-16 04:17:53  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2026-04-16 04:17:53  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.30.0
                        
# 2026-04-16 04:17:53  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:8c11c57da0429a395c00b74ab0e8f20960c4d55255e937cd035fc3e8621399c3",
    "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"
    ],
    "RepoDigests": [
        "ponyix/xiaomiev-mate@sha256:5ca4ef582ca8ef76b8a66bd822d64efe583d0f078b1981040c3519bdc2659ead",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate@sha256:08be20e04aecb0caa3982115d2ec867df1c1ff54c95ab5bb4bc747d94b899658"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-23T08:43:58.2855115Z",
    "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": "amd64",
    "Os": "linux",
    "Size": 64863369,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a8a58041bd0eab82354a112982beb426fbaa3bf1849016aec6f6f15132896492/diff:/var/lib/docker/overlay2/8e6810303de4647d816a06241fa01430e9ad527aed0699f4fe5a7800c3dbc204/diff:/var/lib/docker/overlay2/b2cc381e87e8aa3dcb543e252d23ba45e9e3156b583931f64b4a8601b91783ef/diff:/var/lib/docker/overlay2/304500119f0dcb27995816f42df2e642d6db7a0c9795f6f82e55a69864538584/diff:/var/lib/docker/overlay2/7c28a6d84ff79e46cd621a03d77a6dbbef02a4dcf3c5136973a715ae8a43b143/diff:/var/lib/docker/overlay2/dce8f14672a19ef7d5e15e44fa2207c540dc6ec70b89761004b545b255380793/diff:/var/lib/docker/overlay2/e918429d802365a18ed033d0ec521686382cbfe1ea1b31dc3444caad8439bc2e/diff:/var/lib/docker/overlay2/96d3f5110f48b53ce27f94a5368fc4a100177ec87b418826650e27ea6242f079/diff:/var/lib/docker/overlay2/25979533e2e425f22afcc600ccb45128b109440c7f68049cdcf7fde229f299dd/diff",
            "MergedDir": "/var/lib/docker/overlay2/5c0e07a12a6dd62dd8b3090b16026823b0e8e01fa9e8fac591cf49e030542221/merged",
            "UpperDir": "/var/lib/docker/overlay2/5c0e07a12a6dd62dd8b3090b16026823b0e8e01fa9e8fac591cf49e030542221/diff",
            "WorkDir": "/var/lib/docker/overlay2/5c0e07a12a6dd62dd8b3090b16026823b0e8e01fa9e8fac591cf49e030542221/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:29df493baa13de438d6d2ece3a8333032e0b7b9b9d8cce4ee82194da255f61e1",
            "sha256:776bfa070c0d737f1447e543b977fcb4b39526dfeba76580db1ed3e76b64fb54",
            "sha256:e6fdeb6ca4ffe94dffe7f340a3f052b8a29647d29449bbbf9f569c490a03d944",
            "sha256:ca97775131122884c34cb1410ec4f9a958be81f31105ce719348d5620adb28b9",
            "sha256:d4f7f1ed980c28c1ba02acb8e26515ddb8c7195b0ad3963103857a70faf7a5b7",
            "sha256:6a46a030f32693f4bce24679bbf9362d491f75771d8607ae458666c6c378d4d7",
            "sha256:8aa20eff8f7798f4bec2f7a8370bf997f3d6fe287ba7dcbb9eed36d49b93a6b9",
            "sha256:50af7dc2ba62155482bd362cb1436461475660098f34f0d56ac0a43593ca823a",
            "sha256:63c6afecc3221582550561bbe4ae96997f22ba964cf3a7e1e7fafc6cf3aeebd6",
            "sha256:ec3744d120b501cbbfec6a0e14e671885b4ca2432af23ca98d1264417d696a49"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-23T17:00:37.848592301+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
52

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
9

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

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

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

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

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

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