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

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

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

源镜像 docker.io/ponyix/xiaomiev-mate:web-v1.0.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.0
镜像ID sha256:f54c05d4d33b0e1907fcb77f60f431fb36cba4cb562c4eb770e10bf21cdb2f1c
镜像TAG web-v1.0.0
大小 64.71MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2026-03-19T02:51:12.122006878Z
同步时间 2026-03-19 11:20
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.28.2 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.5 NJS_RELEASE=1 ACME_VERSION=0.3.1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

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

镜像构建历史


# 2026-03-19 10:51:12  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-03-19 10:51:12  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2026-03-19 10:51:12  987.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2026-03-19 10:51:12  2.64MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2026-03-11 05:12:01  49.42MB 执行命令并创建新的镜像层
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=\"ef4545c05b1632a056482e3dbb47bb5d7393238318db3491e8bb308218cdb5f32dbb2ac73509097ac2426fd73270bc97836843a8b1846a396fd94e60826f7e3f *${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-03-11 05:12:01  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.3.1
                        
# 2026-03-11 05:12:01  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2026-03-11 05:12:01  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.5
                        
# 2026-03-11 04:51:53  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-03-11 04:51:53  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-03-11 04:51:53  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-03-11 04:51:53  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-03-11 04:51:53  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-03-11 04:51:53  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-03-11 04:51:53  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-03-11 04:51:53  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-03-11 04:51:53  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-03-11 04:51:53  4.19MB 执行命令并创建新的镜像层
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=\"ef4545c05b1632a056482e3dbb47bb5d7393238318db3491e8bb308218cdb5f32dbb2ac73509097ac2426fd73270bc97836843a8b1846a396fd94e60826f7e3f *${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-03-11 04:51:53  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2026-03-11 04:51:53  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2026-03-11 04:51:53  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.28.2
                        
# 2026-03-11 04:51:53  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 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:f54c05d4d33b0e1907fcb77f60f431fb36cba4cb562c4eb770e10bf21cdb2f1c",
    "RepoTags": [
        "ponyix/xiaomiev-mate:web-v1.0.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate:web-v1.0.0"
    ],
    "RepoDigests": [
        "ponyix/xiaomiev-mate@sha256:fc4ce63a442139fd85766cfd7b3786e66ee905c5a1fd1ca59050e56df9de1cc5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ponyix/xiaomiev-mate@sha256:7a06f41b2847662265cf13aa26c06b771f1ada19934e84100258af4f50de71df"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-03-19T02:51:12.122006878Z",
    "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.28.2",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.5",
            "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"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 64713144,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/aa1702ff326fd8abd9d462f5669ad21072283b38c1522eb7aba39fb5a77ed30a/diff:/var/lib/docker/overlay2/c99cdfeedf58319240314de6190c06f3fcd83cce802dfe1d605028915eae8838/diff:/var/lib/docker/overlay2/d3332a77dbca73efd458d1cdb2b444674898cf2189308a26056e09d05d85f6fc/diff:/var/lib/docker/overlay2/6df794f5ea564c2a5a48f8cc08583447314c93222a7c173ff91c9b3fa888e9d8/diff:/var/lib/docker/overlay2/7250a807e44111667fd46b38ec7dc06785772c2e1858964d815be515663023d4/diff:/var/lib/docker/overlay2/34887d02df27d9235a18596dba9f7e9a5f7f3d3d260be1e379ec49c9a3068afe/diff:/var/lib/docker/overlay2/e9b5cac527509453ca009c0cad129f88c57c0192f42b62a92b8cb021ca982e04/diff:/var/lib/docker/overlay2/7aaca502f5b1457d1eff246031a318d2bafa8f548fafb975cda5a81f772e06d6/diff:/var/lib/docker/overlay2/e2168e4415fa23efb4974948fb84e5824148b54e06c7e4b305be1f21b0d6d57e/diff",
            "MergedDir": "/var/lib/docker/overlay2/d387000693a72ff7eada710cc45b6532b43754f9b303db63aa6a5d3e36a921a4/merged",
            "UpperDir": "/var/lib/docker/overlay2/d387000693a72ff7eada710cc45b6532b43754f9b303db63aa6a5d3e36a921a4/diff",
            "WorkDir": "/var/lib/docker/overlay2/d387000693a72ff7eada710cc45b6532b43754f9b303db63aa6a5d3e36a921a4/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:989e799e634906e94dc9a5ee2ee26fc92ad260522990f26e707861a5f52bf64e",
            "sha256:1768d7614786dbc5c80a98dca87c34f42155f29df3792e936103fcb0e3d789f8",
            "sha256:78a46309e465bb8771e4ee847d99e858a715e1a28170805cbe9e209a00062c88",
            "sha256:1625bccdd9569f2e7b001540ee7df9d226b3631f7beff0e5f4e8485620cc1946",
            "sha256:d23f86ecc52833baa07f297b50aea68aba3de19b37e86b8348059d439302060e",
            "sha256:e53ebe366cbcc7cdfdca2fd0cd1f1265e3606321796f341931cc3952c0205cd2",
            "sha256:d3020426f356823d0a7607ba303119b48ad4c369ab00c379fd27aaa43c4cd2b2",
            "sha256:f93a651a1bc428eeab313408a528269170922276d2c97460ad0cd078cf16b4af",
            "sha256:55af33a025b8b09f00624a01cbdc5e76ff9dcad28b9178e9531bb3132cc33589",
            "sha256:d9aa9f143827a4e6875b1cf53ca149d38afb478748fc4aa499c821b60c09ebc8"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-19T11:20:48.558862984+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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