docker.io/mikefan2019/opendataworks-frontend:0.3.7 linux/amd64

docker.io/mikefan2019/opendataworks-frontend:0.3.7 - 国内下载镜像源 浏览次数:8

这个Docker镜像是OpenDataWorks项目的前端部分镜像,用于部署OpenDataWorks数据工作平台的前端界面,提供数据管理、分析等相关功能的可视化交互入口。

源镜像 docker.io/mikefan2019/opendataworks-frontend:0.3.7
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7
镜像ID sha256:01488b08b7e1ac101bf0c7e1b19fd9a73703023499811a768edefed1798250cd
镜像TAG 0.3.7
大小 66.03MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2026-02-10T07:57:23.978896881Z
同步时间 2026-02-11 12:05
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.5 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 2026-02-10T08:53:43.233Z: org.opencontainers.image.created opendataworks 是一个面向大数据平台的统一数据门户系统,基于DolphinScheduler、Doris等开源项目,旨在为企业提供一站式的数据资产管理、任务调度编排和血缘关系追踪解决方案。: org.opencontainers.image.description Apache-2.0: org.opencontainers.image.licenses 97e87c9f2ec4f799d3ee564f2d7c8a7b74666070: org.opencontainers.image.revision https://github.com/MingkeVan/opendataworks: org.opencontainers.image.source opendataworks: org.opencontainers.image.title https://github.com/MingkeVan/opendataworks: org.opencontainers.image.url 0.3.7: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7  docker.io/mikefan2019/opendataworks-frontend:0.3.7

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7  docker.io/mikefan2019/opendataworks-frontend:0.3.7

Shell快速替换命令

sed -i 's#mikefan2019/opendataworks-frontend:0.3.7#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7  docker.io/mikefan2019/opendataworks-frontend:0.3.7'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7  docker.io/mikefan2019/opendataworks-frontend:0.3.7'

镜像构建历史


# 2026-02-10 15:57:23  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-02-10 15:57:23  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2026-02-10 15:57:23  1.01KB 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2026-02-10 15:57:23  3.91MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2026-02-05 08:07:18  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/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                 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=\"b8584eaa97130ba7743dfbb2a10f665d64cb54b864e2038d0fd298d24682fc05eb4472738430b15862dabc6f374917f1b9889117051a852d36d0a6c8bc898921 *${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-02-05 08:07:18  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.3.1
                        
# 2026-02-05 08:07:18  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2026-02-05 08:07:18  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.5
                        
# 2026-02-05 07:53:22  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-02-05 07:53:22  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-02-05 07:53:22  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-02-05 07:53:22  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-02-05 07:53:22  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-02-05 07:53:22  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-02-05 07:53:22  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-02-05 07:53:22  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-02-05 07:53:22  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-02-05 07:53:22  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=\"b8584eaa97130ba7743dfbb2a10f665d64cb54b864e2038d0fd298d24682fc05eb4472738430b15862dabc6f374917f1b9889117051a852d36d0a6c8bc898921 *${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
                        
# 2026-02-05 07:53:22  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2026-02-05 07:53:22  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2026-02-05 07:53:22  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.5
                        
# 2026-02-05 07:53:22  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:01488b08b7e1ac101bf0c7e1b19fd9a73703023499811a768edefed1798250cd",
    "RepoTags": [
        "mikefan2019/opendataworks-frontend:0.3.7",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend:0.3.7"
    ],
    "RepoDigests": [
        "mikefan2019/opendataworks-frontend@sha256:bb91b1393497fbb6177af57af7b51843a7dea757d20f42b52826433be9c3c3d4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mikefan2019/opendataworks-frontend@sha256:8b0b4173ae2b1d545aed38e2de7792021ced05da9dede79e21f9a4c2de69e364"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-02-10T07:57:23.978896881Z",
    "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.5",
            "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",
            "org.opencontainers.image.created": "2026-02-10T08:53:43.233Z",
            "org.opencontainers.image.description": "opendataworks 是一个面向大数据平台的统一数据门户系统,基于DolphinScheduler、Doris等开源项目,旨在为企业提供一站式的数据资产管理、任务调度编排和血缘关系追踪解决方案。",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.revision": "97e87c9f2ec4f799d3ee564f2d7c8a7b74666070",
            "org.opencontainers.image.source": "https://github.com/MingkeVan/opendataworks",
            "org.opencontainers.image.title": "opendataworks",
            "org.opencontainers.image.url": "https://github.com/MingkeVan/opendataworks",
            "org.opencontainers.image.version": "0.3.7"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 66027636,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/3d568ced7066af32710ee9a256e2b80d5d073aca2e5865ed8fb861b509be5079/diff:/var/lib/docker/overlay2/ba80abe69d626613ac6ecb05bf151a6edf56c6ffbbbf58c9444a1ba86c722942/diff:/var/lib/docker/overlay2/e61547a7f7db55e9a86adebdbd1d5b49b3648f419aed24214fcd3bb56508522a/diff:/var/lib/docker/overlay2/44a8dd57a117c88ed39d9b8856f3f1023ac15751b02f8ebe1637f9f857bbf37c/diff:/var/lib/docker/overlay2/92ac0077df6704c28952c80c3ddecd259b0e428013ae101c38b1755a12a6590a/diff:/var/lib/docker/overlay2/81767c5a74df0dd05f4f64196543fb52ba70a1a9aef76cd8de222c52f47aca9f/diff:/var/lib/docker/overlay2/41fefa57da9a2a05e4112de1369446ddac54bd3953fb3dc47f04c50032e6c319/diff:/var/lib/docker/overlay2/218c08ba44ee56352ad982f1a2d81c1f8a425640e41ccd20e99a44bb4a05b03b/diff:/var/lib/docker/overlay2/3dc97e4bd65634a7cbd11b7bb49ed3d2c79bcba47fa4949d6eb2cba3baa63eb1/diff",
            "MergedDir": "/var/lib/docker/overlay2/951967c431ae864c30f41292a396896517822c93f86d776d7e98a6cc19d905bd/merged",
            "UpperDir": "/var/lib/docker/overlay2/951967c431ae864c30f41292a396896517822c93f86d776d7e98a6cc19d905bd/diff",
            "WorkDir": "/var/lib/docker/overlay2/951967c431ae864c30f41292a396896517822c93f86d776d7e98a6cc19d905bd/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:989e799e634906e94dc9a5ee2ee26fc92ad260522990f26e707861a5f52bf64e",
            "sha256:53998a5033c3c508a3912f390e036cf2d3761839a9f33a3116eb4610cff01f5a",
            "sha256:660f9a93104fa1af3115dcecdc51a462e39ac850c8d23d7517fb324aceaa1b64",
            "sha256:f35bcec50d8c988c543832ca1bfe8a008dbf52fbbb64e050a3617b5c8b17af40",
            "sha256:aa0fc249df10e9949b4deb92b6611a7d25203282b7bfe69c4482a8a717f79510",
            "sha256:6c0e59fd138a72dba956ed6d98dbca77200fd4d822ac65e8f1d04175e441d523",
            "sha256:7b2903554e639cafe89adc85ab96a86c767c9a88dfa90de2dfbe48a7988aec26",
            "sha256:da3ac26fdf0f7491d981691d9204d050a9d906fabfd5a6f73c0a14ed7304117f",
            "sha256:91861ba6ec59c2c04d7ae31782f066ac6cbdf3ea32af4c56ae3f1ca15da4b5a6",
            "sha256:00b8a1fca49559724849e675c6c2a0c26705761a2451eaad1180cfaaa5d00944"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-11T12:05:03.022124078+08:00"
    }
}

更多版本

docker.io/mikefan2019/opendataworks-frontend:0.3.7

linux/amd64 docker.io66.03MB2026-02-11 12:05
7