docker.io/lpdswing/mineru-web-frontend:v2.7.1 linux/amd64

docker.io/lpdswing/mineru-web-frontend:v2.7.1 - 国内下载镜像源 浏览次数:11

这是一个名为mineru-web-frontend的Docker容器镜像,由用户lpdswing发布在Docker Hub上。 具体功能信息需要参考镜像的文档或代码。

源镜像 docker.io/lpdswing/mineru-web-frontend:v2.7.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1
镜像ID sha256:bbac71e3c6d93302eb34596bb9a350b0e6245a6b8914df6bee607d8cefdb04c3
镜像TAG v2.7.1
大小 57.30MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2026-01-09T06:54:37.993099326Z
同步时间 2026-02-03 17:22
更新时间 2026-02-04 08:02
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.4 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.4 NJS_RELEASE=1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2026-01-09T06:52:50.312Z: org.opencontainers.image.created A user-friendly PDF-to-Markdown conversion tool based on Mineru.: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses fc0a9f1b248c901c072f0b8e152f7c99519d68ca: org.opencontainers.image.revision https://github.com/lpdswing/mineru-web: org.opencontainers.image.source mineru-web: org.opencontainers.image.title https://github.com/lpdswing/mineru-web: org.opencontainers.image.url v2.7.1: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1  docker.io/lpdswing/mineru-web-frontend:v2.7.1

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1  docker.io/lpdswing/mineru-web-frontend:v2.7.1

Shell快速替换命令

sed -i 's#lpdswing/mineru-web-frontend:v2.7.1#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1  docker.io/lpdswing/mineru-web-frontend:v2.7.1'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1  docker.io/lpdswing/mineru-web-frontend:v2.7.1'

镜像构建历史


# 2026-01-09 14:54:37  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-01-09 14:54:37  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2026-01-09 14:54:37  2.01KB 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/nginx.conf # buildkit
                        
# 2026-01-09 14:54:37  3.55MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2025-12-18 09:14:04  41.05MB 执行命令并创建新的镜像层
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}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             apk add -X "https://nginx.org/packages/mainline/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             && 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=\"e8b08060e10b8d8819e03533cb4922992ea138bcbf16a89a90593db719f17d78afa1cc4785592260c9c897753ec28c8b0d02c01df4b7d0e0ed286d0a42cef68c *${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 module-geoip module-image-filter module-njs module-xslt                 && 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             && 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
                        
# 2025-12-18 09:14:04  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2025-12-18 09:14:04  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.4
                        
# 2025-12-18 08:29:41  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-12-18 08:29:41  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-12-18 08:29:41  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-12-18 08:29:41  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2025-12-18 08:29:41  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2025-12-18 08:29:41  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2025-12-18 08:29:41  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2025-12-18 08:29:41  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2025-12-18 08:29:41  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2025-12-18 08:29:41  4.25MB 执行命令并创建新的镜像层
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             && apk add -X "https://nginx.org/packages/mainline/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=\"e8b08060e10b8d8819e03533cb4922992ea138bcbf16a89a90593db719f17d78afa1cc4785592260c9c897753ec28c8b0d02c01df4b7d0e0ed286d0a42cef68c *${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             && 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 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
                        
# 2025-12-18 08:29:41  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2025-12-18 08:29:41  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2025-12-18 08:29:41  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.4
                        
# 2025-12-18 08:29:41  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2025-12-18 08:12:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-12-18 08:12:29  8.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:bbac71e3c6d93302eb34596bb9a350b0e6245a6b8914df6bee607d8cefdb04c3",
    "RepoTags": [
        "lpdswing/mineru-web-frontend:v2.7.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend:v2.7.1"
    ],
    "RepoDigests": [
        "lpdswing/mineru-web-frontend@sha256:5182747c05dded11fc845b60ba6ca8d8cc83261bc625f84c32049d5f6f23ffcc",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/lpdswing/mineru-web-frontend@sha256:ce5bd9ded73489124a4e4fd46e13e3ec8833237cb5791d94501aee7285595c2f"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-09T06:54:37.993099326Z",
    "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.29.4",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.4",
            "NJS_RELEASE=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-01-09T06:52:50.312Z",
            "org.opencontainers.image.description": "A user-friendly PDF-to-Markdown conversion tool based on Mineru.",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "fc0a9f1b248c901c072f0b8e152f7c99519d68ca",
            "org.opencontainers.image.source": "https://github.com/lpdswing/mineru-web",
            "org.opencontainers.image.title": "mineru-web",
            "org.opencontainers.image.url": "https://github.com/lpdswing/mineru-web",
            "org.opencontainers.image.version": "v2.7.1"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 57301434,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/771e79e8677508ffdadca4ee61be3b6cd603811b72b4d71ed3fb2122a504114f/diff:/var/lib/docker/overlay2/94b401e22eb1100add43e6f3e1a4bbdc0cdd8902a07016d4caf94eb637fa10ae/diff:/var/lib/docker/overlay2/e008875eeae6522a47cace55d03d5c0e7a372dc6ed00fde6c87a19e70066d922/diff:/var/lib/docker/overlay2/e81a4c4fe5d63446f2275b1afed37024b215f7d15212a14a268903f0412e8e4c/diff:/var/lib/docker/overlay2/e0fb073ab6de1dfa31fa2b20f4eea36774088aadcf1f5c0746e3dc2e4d39f489/diff:/var/lib/docker/overlay2/5b9705118c99e157993ae5e69ba8b51bd07a84b23df9b0670c94d01bf958975e/diff:/var/lib/docker/overlay2/ce2a08a6b9965a3be10bfa3a73306ebe88f6095156970204dd60baa30b191e47/diff:/var/lib/docker/overlay2/45aa5c3b1f64bc04ff61a1900dd04a933097cd1c42fa377a02831f2e90549c68/diff:/var/lib/docker/overlay2/fdc5e5689601dc92f6e20c665524fba39f8cab962b793bba8d800e1bb195a0a2/diff",
            "MergedDir": "/var/lib/docker/overlay2/f4d89071cb55d7e291e46b508b3a20ac1a676be8d74b29eb213a4efce71aff44/merged",
            "UpperDir": "/var/lib/docker/overlay2/f4d89071cb55d7e291e46b508b3a20ac1a676be8d74b29eb213a4efce71aff44/diff",
            "WorkDir": "/var/lib/docker/overlay2/f4d89071cb55d7e291e46b508b3a20ac1a676be8d74b29eb213a4efce71aff44/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:7bb20cf5ef67526cb843d264145241ce4dde09a337b5be1be42ba464de9a672d",
            "sha256:fd1e40d7f74b5c12a5d7cd010e7c978719bcc364b758e951b729d6e97469f3f9",
            "sha256:48078b7e3000f40c4d67cb908f5bb56a322b757f7ccdf09794a109317da7a37a",
            "sha256:b3e3d1bbb64d1d10e26662b1f8528f1afd0271b85edcd2d8371d09fc0a606dba",
            "sha256:8ae63eb1f31f3155ef6ccdc63d777602944e975b9a6c38909257c62a623dee60",
            "sha256:ed5fa8595c7aa2584655c40c2835c75fc0c2039f72a2dac993442a4d19a7266b",
            "sha256:67ea0b046e7d3167953e9b192b7fb23be8ad6c026e65294b7070583e68fe5807",
            "sha256:e6fe11fa5b7f250edfbaca239d0f043e0d825c52a9809d13dd928a1ece6a3742",
            "sha256:7d277c4adc6d36b9d05ea3f795f104422ea0d89323f1dfa7233868d33dab3841",
            "sha256:c8e9ef9059f85671a1ee384e3c420cd53c23e3ce988da4b315347a48e5d69b1d"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-03T17:22:10.045845475+08:00"
    }
}

更多版本

docker.io/lpdswing/mineru-web-frontend:v2.0.0

linux/amd64 docker.io56.15MB2025-07-28 11:06
236

docker.io/lpdswing/mineru-web-frontend:v2.7.1

linux/amd64 docker.io57.30MB2026-02-03 17:22
10