docker.io/kubeshark/front:v52.7.8 linux/amd64

docker.io/kubeshark/front:v52.7.8 - 国内下载镜像源 浏览次数:8

Kubeshark Front


无描述信息

源镜像 docker.io/kubeshark/front:v52.7.8
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8
镜像ID sha256:39426ef2fe3cd64ff85b5368bd59569b5a242349e4e016784e429477099c4e41
镜像TAG v52.7.8
大小 178.49MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/sh -c runtime-env-cra-fallback && nginx -g "daemon off;"
启动入口 /docker-entrypoint.sh
工作目录 /usr/share/nginx/html
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2025-06-16T21:34:20.244143693Z
同步时间 2025-06-30 16:17
更新时间 2025-06-30 23:30
开放端口
80/tcp 8080/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.25.3 PKG_RELEASE=1 NJS_VERSION=0.8.2 NODE_ENV=production
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2025-06-16T21:28:54.610Z: org.opencontainers.image.created The React app that serves as Kubeshark's front-end: org.opencontainers.image.description NOASSERTION: org.opencontainers.image.licenses e940fb9cd6268979d4728d3cd43e70ad6c11f9c4: org.opencontainers.image.revision https://github.com/kubeshark/front: org.opencontainers.image.source front: org.opencontainers.image.title https://github.com/kubeshark/front: org.opencontainers.image.url v52.7.8-amd64: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8  docker.io/kubeshark/front:v52.7.8

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8  docker.io/kubeshark/front:v52.7.8

Shell快速替换命令

sed -i 's#kubeshark/front:v52.7.8#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8  docker.io/kubeshark/front:v52.7.8'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8  docker.io/kubeshark/front:v52.7.8'

镜像构建历史


# 2025-06-17 05:34:20  0.00B 设置默认要执行的命令
CMD ["/bin/sh" "-c" "runtime-env-cra-fallback && nginx -g \"daemon off;\""]
                        
# 2025-06-17 05:34:20  0.00B 声明容器运行时监听的端口
EXPOSE map[8080/tcp:{}]
                        
# 2025-06-17 05:34:20  578.00B 复制新文件或目录到容器中
COPY .env . # buildkit
                        
# 2025-06-17 05:34:20  0.00B 设置工作目录为/usr/share/nginx/html
WORKDIR /usr/share/nginx/html
                        
# 2025-06-17 05:34:20  72.34MB 复制新文件或目录到容器中
COPY /app/build /usr/share/nginx/html # buildkit
                        
# 2025-06-17 05:29:14  1.86KB 复制新文件或目录到容器中
COPY conf /etc/nginx # buildkit
                        
# 2025-06-17 05:29:14  0.00B 设置环境变量 NODE_ENV
ENV NODE_ENV=production
                        
# 2024-10-17 23:00:58  1.58MB 执行命令并创建新的镜像层
RUN /bin/sh -c npm install -g runtime-env-cra-fallback@0.2.6 # buildkit
                        
# 2024-10-17 23:00:53  10.15MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --update npm # buildkit
                        
# 2024-10-17 23:00:46  51.83MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --update nodejs # buildkit
                        
# 2024-10-17 22:59:37  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c rm -rf /etc/nginx/conf.d # buildkit
                        
# 2023-10-25 06:44:45  30.68MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}.${NJS_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                 libxslt-dev                 gd-dev                 geoip-dev                 libedit-dev                 bash                 alpine-sdk                 findutils             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"00b217979265cc9d66c991c9c89427558936dbaa568d175ca45780589171d94f1866217be09a83438d95494cf38baaa6788320f6d8d23f2fb29c03117391ff88 *${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 -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     && if [ -f "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi     && apk add --no-cache curl ca-certificates # buildkit
                        
# 2023-10-25 06:44:45  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.8.2
                        
# 2023-10-25 06:44:45  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2023-10-25 06:44:45  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2023-10-25 06:44:45  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2023-10-25 06:44:45  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2023-10-25 06:44:45  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2023-10-25 06:44:45  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2023-10-25 06:44:45  298.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2023-10-25 06:44:45  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2023-10-25 06:44:45  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2023-10-25 06:44:45  4.56MB 执行命令并创建新的镜像层
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             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"00b217979265cc9d66c991c9c89427558936dbaa568d175ca45780589171d94f1866217be09a83438d95494cf38baaa6788320f6d8d23f2fb29c03117391ff88 *${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 -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     && if [ -f "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi     && apk add --no-cache --virtual .gettext gettext     && mv /usr/bin/envsubst /tmp/         && runDeps="$(         scanelf --needed --nobanner /tmp/envsubst             | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }'             | sort -u             | xargs -r apk info --installed             | sort -u     )"     && apk add --no-cache $runDeps     && apk del --no-network .gettext     && mv /tmp/envsubst /usr/local/bin/     && 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
                        
# 2023-10-25 06:44:45  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2023-10-25 06:44:45  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.25.3
                        
# 2023-10-25 06:44:45  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2023-10-25 06:44:45  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2023-10-25 06:44:45  7.34MB 
/bin/sh -c #(nop) ADD file:8729f9c0258836b640e9e789c7ab029cf4547e0596557d54dd4a4d7d8e4a785f in / 
                        
                    

镜像信息

{
    "Id": "sha256:39426ef2fe3cd64ff85b5368bd59569b5a242349e4e016784e429477099c4e41",
    "RepoTags": [
        "kubeshark/front:v52.7.8",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front:v52.7.8"
    ],
    "RepoDigests": [
        "kubeshark/front@sha256:22bea86a8152b216d27545cfa1b826487d4bd9fa66d842f9b8f2cd5725143390",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/kubeshark/front@sha256:67fdbe52e8a13ab61b6409c36de2c1f42e3bd02ee4c967d0d26bc896a2a89c7f"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-06-16T21:34:20.244143693Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "80/tcp": {},
            "8080/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NGINX_VERSION=1.25.3",
            "PKG_RELEASE=1",
            "NJS_VERSION=0.8.2",
            "NODE_ENV=production"
        ],
        "Cmd": [
            "/bin/sh",
            "-c",
            "runtime-env-cra-fallback \u0026\u0026 nginx -g \"daemon off;\""
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/usr/share/nginx/html",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "2025-06-16T21:28:54.610Z",
            "org.opencontainers.image.description": "The React app that serves as Kubeshark's front-end",
            "org.opencontainers.image.licenses": "NOASSERTION",
            "org.opencontainers.image.revision": "e940fb9cd6268979d4728d3cd43e70ad6c11f9c4",
            "org.opencontainers.image.source": "https://github.com/kubeshark/front",
            "org.opencontainers.image.title": "front",
            "org.opencontainers.image.url": "https://github.com/kubeshark/front",
            "org.opencontainers.image.version": "v52.7.8-amd64"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 178489729,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/b467bad2f69437460666cb747db5c8f6a36ec52a2128576ed1d7c173b3d7a203/diff:/var/lib/docker/overlay2/c9586fce5222558e900361006d303642034ab00eaf2701e2333d28a4acae501f/diff:/var/lib/docker/overlay2/a6e5c07eb5d462870f8c0f24a2aad35f38008dbdd527b73815db4b7a8209813e/diff:/var/lib/docker/overlay2/e15fe7b8330709b001c0a2915b617f820b186758946fdc17d49a90cc82243c46/diff:/var/lib/docker/overlay2/1a3efd793c98bd91c77786c58ff9a3925b9094cdd8e317ec5ec4f5f64f1fbcfe/diff:/var/lib/docker/overlay2/ac7c4f4f66b5cb16e75dcd050af8d82e5129aad8f52aabf1183676927cc7c765/diff:/var/lib/docker/overlay2/ab79a648d58bc953e0d7d5a8a07eff57ccd34df8fc0b34624b6610d4fab4edf2/diff:/var/lib/docker/overlay2/e4bf951310e880654614320e2f5099c0d257630286dfbbe59b6ceb5fca0cb9f8/diff:/var/lib/docker/overlay2/64835af054799d36f5526004d7c276fb8f652df0daa0e19b59a36ac6877fa179/diff:/var/lib/docker/overlay2/ab1b243fe9477a6448c18add601d4c9739e3f7b12957742a9c73ea08d413eb30/diff:/var/lib/docker/overlay2/0f3bccd3217249f66f6672d13d8d1360fb9b4229ae43bd3e1a35ba92e27eb0b6/diff:/var/lib/docker/overlay2/7bfe44e4eace05ddf678bb44dc1aba00f7455313f4b63955bcab8c9fc2a1bee3/diff:/var/lib/docker/overlay2/8a57782912633dab7347a9f8f98522040b3322c87facdcfefb7ef127f5653cb2/diff:/var/lib/docker/overlay2/04fd5f9abb633a7158dbc4b31195f35fe31ffa965fc07bcb3d05e048493d0d9b/diff:/var/lib/docker/overlay2/50cdbafdf259a20f21b012d7298d358db6a2cb10a95e8c6a4d9a6cb3edad25e7/diff",
            "MergedDir": "/var/lib/docker/overlay2/f4abeac494d7c67e76a7aa02ff23b009bb093421fd54018095863f0d52c0b2ed/merged",
            "UpperDir": "/var/lib/docker/overlay2/f4abeac494d7c67e76a7aa02ff23b009bb093421fd54018095863f0d52c0b2ed/diff",
            "WorkDir": "/var/lib/docker/overlay2/f4abeac494d7c67e76a7aa02ff23b009bb093421fd54018095863f0d52c0b2ed/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:aedc3bda2944bb9bcb6c3d475bee8b460db9a9b0f3e0b33a6ed2fd1ae0f1d445",
            "sha256:de350a6975630643c806a99a2f8b4e181a5e71fe1d594951e736f7861aae93ed",
            "sha256:ad2ff101ef185b6611ecfb6516b03aa9c775a1d68624bd1f58f69b220761d72d",
            "sha256:9a3be9af92ce9451e146e2acaccc5766e8ba1deb4e6296381f0a2c80c7993a45",
            "sha256:21eb277a065e4a9fcfdda8056831f87c7e928d61e19be83bef0accdc7f1fb38a",
            "sha256:4fc77163dad1ca5b418dbc228b4d9befe41ce577b381692f42ee38c56cf2f76d",
            "sha256:61b0026600b0c2d8961e33441a5f7dc2097fba05db6effee5f5c5ff073a82850",
            "sha256:489171e8d0fd226e7e8e032a40bdc19083c46ac72c2e1753dc4d1010837a2fe1",
            "sha256:751c409b3e7e2bc3f24a8ed1c53043871c3a03a1b74bce40990eb66135e8eb30",
            "sha256:6ef8349cec74e2659e87db583cfcb3f381e3ee5a41c3b77bd8a7c8b00efa6e1e",
            "sha256:20c9cbe375b6801e995ba4d1b899c8f87fd093223efefcdecdbc24aec8f6769b",
            "sha256:508fcad9b1217fba003361c3e145ef552a0ee0bf69746aba1589b8be53c7f33c",
            "sha256:f54c3ff4366e85b8ca45ca1d9ee335b10eff84bcf842ef2037e0dc6f2e6766d9",
            "sha256:a064c491017d5e945ec8a405ea686a74c410c8a8a3e5532712b9ec711cd55ee4",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:c1b5e8df1dcb867438b7e65ceddcbd481a5fa56a74f8558839391b4582823a14"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-06-30T16:17:14.56985374+08:00"
    }
}

更多版本

docker.io/kubeshark/front:v52.3.78

linux/amd64 docker.io131.14MB2024-08-22 13:10
199

docker.io/kubeshark/front:v52.5

linux/amd64 docker.io177.21MB2025-03-10 20:40
79

docker.io/kubeshark/front:v52.4

linux/amd64 docker.io177.21MB2025-03-11 09:50
78

docker.io/kubeshark/front:v52.6

linux/amd64 docker.io177.37MB2025-04-02 20:38
53

docker.io/kubeshark/front:v52.7

linux/amd64 docker.io178.57MB2025-05-22 10:08
33

docker.io/kubeshark/front:v52.7.8

linux/amd64 docker.io178.49MB2025-06-30 16:17
7