docker.io/apache/streampark:latest linux/amd64

docker.io/apache/streampark:latest - 国内下载镜像源 浏览次数:55 安全受验证的发布者-apache

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

Apache StreamPARK Apache StreamPARK 是一个实时数据处理和分析平台,可以将各种数据源连接到一起,对数据进行实时处理、分析和可视化。
源镜像 docker.io/apache/streampark:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest
镜像ID sha256:37bd2beadc6f7c07d35876625cecd8f7dfe9e766de90a25894b039d66a39a1f1
镜像TAG latest
大小 1.68GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /usr/sbin/tini -- /streampark/bin/streampark.sh start_docker
工作目录
OS/平台 linux/amd64
浏览量 55 次
贡献者 cp***e@163.com
镜像创建 2024-10-18T08:01:38.006416313Z
同步时间 2025-02-17 11:52
更新时间 2025-04-03 17:22
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin JAVA_HOME=/usr/lib/jvm/jdk8 TINI_VERSION=v0.19.0
镜像标签
2024-10-18T08:00:28.623Z: org.opencontainers.image.created Make stream processing easier! Easy-to-use streaming application development framework and operation platform.: org.opencontainers.image.description Apache-2.0: org.opencontainers.image.licenses ubuntu: org.opencontainers.image.ref.name ae5b84bc7c164460047566b0dd8864d135200ac2: org.opencontainers.image.revision https://github.com/apache/incubator-streampark: org.opencontainers.image.source incubator-streampark: org.opencontainers.image.title https://github.com/apache/incubator-streampark: org.opencontainers.image.url 2.1.5: org.opencontainers.image.version
镜像安全扫描 查看Trivy扫描报告

系统OS: ubuntu 22.04 扫描引擎: Trivy 扫描时间: 2025-02-18 05:24

低危漏洞:104 中危漏洞:77 高危漏洞:37 严重漏洞:6

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest  docker.io/apache/streampark:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest  docker.io/apache/streampark:latest

Shell快速替换命令

sed -i 's#apache/streampark:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest  docker.io/apache/streampark:latest'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest  docker.io/apache/streampark:latest'

镜像构建历史


# 2024-10-18 16:01:38  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/sbin/tini" "--" "/streampark/bin/streampark.sh" "start_docker"]
                        
# 2024-10-18 16:01:38  228.22MB 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c tar -zxvf apache-streampark_*-bin.tar.gz     && mv apache-streampark_*-bin streampark     && rm -f apache-streampark_*-bin.tar.gz # buildkit
                        
# 2024-10-18 16:01:36  207.92MB 复制新文件或目录到容器中
COPY dist/apache-streampark_*-bin.tar.gz / # buildkit
                        
# 2024-10-18 16:01:35  24.06KB 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c chmod +x /usr/sbin/tini # buildkit
                        
# 2024-10-18 16:01:35  24.23KB 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c if [ "$TARGETPLATFORM" = "linux/amd64" ];then         TINI_PLATFORM=amd64;         wget --no-check-certificate -O /usr/sbin/tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-$TINI_PLATFORM;     elif [ "$TARGETPLATFORM" = "linux/arm64" ];then         TINI_PLATFORM=arm64;         wget --no-check-certificate -O /usr/sbin/tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-$TINI_PLATFORM;     else         echo "unknown TARGETPLATFORM: $TARGETPLATFORM";         exit 2;      fi # buildkit
                        
# 2024-10-18 16:01:35  0.00B 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c echo "TARGETPLATFORM: $TARGETPLATFORM" # buildkit
                        
# 2024-10-18 16:01:35  0.00B 设置环境变量 TINI_VERSION
ENV TINI_VERSION=v0.19.0
                        
# 2024-10-18 16:01:35  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2024-10-18 16:01:35  513.47MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt update &&     apt install -y ca-certificates curl gnupg &&     install -m 0755 -d /etc/apt/keyrings &&     curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg &&     chmod a+r /etc/apt/keyrings/docker.gpg &&     echo         "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu         "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" |         tee /etc/apt/sources.list.d/docker.list > /dev/null &&     apt update &&     apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin # buildkit
                        
# 2024-10-18 16:01:16  0.00B 设置环境变量 JAVA_HOME
ENV JAVA_HOME=/usr/lib/jvm/jdk8
                        
# 2024-10-18 16:01:16  34.00B 执行命令并创建新的镜像层
RUN /bin/sh -c JAVA_PATH=$(ls -l /usr/lib/jvm | grep java-8-openjdk | grep ^d | awk -F ' ' '{print $9}');     if [ -z "${JAVA_PATH}" ];then         echo "JAVA_PATH not found: $JAVA_PATH";         exit 2;     else         ln -s /usr/lib/jvm/$JAVA_PATH/ /usr/lib/jvm/jdk8;     fi # buildkit
                        
# 2024-10-18 16:01:16  420.37MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt update && apt install -y openjdk-8-jdk # buildkit
                        
# 2024-10-18 16:00:58  232.52MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt update && apt install -y wget curl vim net-tools iputils-ping     && apt install software-properties-common -y     && add-apt-repository ppa:openjdk-r/ppa -y # buildkit
                        
# 2024-10-18 16:00:58  0.00B 指定运行容器时使用的用户
USER root
                        
# 2024-09-12 00:25:18  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2024-09-12 00:25:17  77.86MB 
/bin/sh -c #(nop) ADD file:ebe009f86035c175ba244badd298a2582914415cf62783d510eab3a311a5d4e1 in / 
                        
# 2024-09-12 00:25:16  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=22.04
                        
# 2024-09-12 00:25:16  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2024-09-12 00:25:16  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2024-09-12 00:25:16  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:37bd2beadc6f7c07d35876625cecd8f7dfe9e766de90a25894b039d66a39a1f1",
    "RepoTags": [
        "apache/streampark:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:latest"
    ],
    "RepoDigests": [
        "apache/streampark@sha256:165dd48f03541371ee8d6f50ca8f63899c8e95bdc23552b7af2965af99f4bf41",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark@sha256:d78baaea46dfb5cc252ad3992369a13787649be001792c34050fa7cb8c10d1cd"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-10-18T08:01:38.006416313Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "root",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "JAVA_HOME=/usr/lib/jvm/jdk8",
            "TINI_VERSION=v0.19.0"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "/usr/sbin/tini",
            "--",
            "/streampark/bin/streampark.sh",
            "start_docker"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2024-10-18T08:00:28.623Z",
            "org.opencontainers.image.description": "Make stream processing easier! Easy-to-use streaming application development framework and operation platform.",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.revision": "ae5b84bc7c164460047566b0dd8864d135200ac2",
            "org.opencontainers.image.source": "https://github.com/apache/incubator-streampark",
            "org.opencontainers.image.title": "incubator-streampark",
            "org.opencontainers.image.url": "https://github.com/apache/incubator-streampark",
            "org.opencontainers.image.version": "2.1.5"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1680401712,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/efd830898c8a9e025858d49e4bf0e048ca23efdce37d4ce400fd9da83200006a/diff:/var/lib/docker/overlay2/b855cfcb6afef0d46b38b66b4190b494f4ede9ae3e2c2b5e14c0a23c42ab1abd/diff:/var/lib/docker/overlay2/4d56197088b1e37efd86996c5986f6bc061394c0a66b9fc4b07274a1d18a2be4/diff:/var/lib/docker/overlay2/51b52ff5206bd7c6b64ff4fbe437d8b03765de86a9839bae8e674d827176e47e/diff:/var/lib/docker/overlay2/5ff2ccc2c083363bd494d88ac64ebcc9f27b0bb64093ca1a68a24c372644d096/diff:/var/lib/docker/overlay2/374edc865b6b1fb1bf286803c22b4a11062c4890ff23b6ebf6b5e57817ec3781/diff:/var/lib/docker/overlay2/1c0f50a46cc9681380ec3cbde019c06e5eb12a157bb7060855695b1b6d70de35/diff:/var/lib/docker/overlay2/b50ea91052c1d1b54b0a34471aadebfe812630ae0c05efe0efdacd614d05830e/diff:/var/lib/docker/overlay2/4cfb2ff6eb670d08d805fcc326973c76acabc424b2f6ce5f1903149f34750452/diff",
            "MergedDir": "/var/lib/docker/overlay2/65961b15f38252ff1156e170870c80cf908c123c8388d5224e63a7e14df75890/merged",
            "UpperDir": "/var/lib/docker/overlay2/65961b15f38252ff1156e170870c80cf908c123c8388d5224e63a7e14df75890/diff",
            "WorkDir": "/var/lib/docker/overlay2/65961b15f38252ff1156e170870c80cf908c123c8388d5224e63a7e14df75890/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:2573e0d8158209ed54ab25c87bcdcb00bd3d2539246960a3d592a1c599d70465",
            "sha256:a6fdaff48843a082a3a5cefd1f276d1b93ee59e11dd9d9858d7cb3aac049ede8",
            "sha256:d2447835ad0725487dae0d8f80825a4ce422f1d27aa837941aa1f9646e33ca9c",
            "sha256:9703aaaffec961dfc624d55ad3b4fc8b93d0e6266fa6467bed34da18461866e8",
            "sha256:c34f423922cea9b47ca74f8073506a55f3daa073793cbe53377b34d2136a825c",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:665908178382eecf1f1afe189565b8d047852877cbb853a4dfe4daaaaf2e6f32",
            "sha256:eba38e1f87719b7bd6d85965219dd1b2838319e118c31f2f00f70c4a0f895564",
            "sha256:9afe7d5526c0a190e8d30f6b0f81eed414e5fceed761410a60abcc31f19d0655",
            "sha256:c34b03a4eaed0ba9a2c4658f89aedacd7dafe7b35d7854433dae3b31c90c4f67"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-02-17T11:50:21.654864685+08:00"
    }
}

更多版本

docker.io/apache/streampark:2.1.4

linux/amd64 docker.io949.28MB2024-08-06 20:23
244

docker.io/apache/streampark:latest

linux/amd64 docker.io1.68GB2025-02-17 11:52
54