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

docker.io/apache/streampark:2.1.6 - 国内下载镜像源 浏览次数:15 安全受验证的发布者-apache
Apache StreamPARK Apache StreamPARK 是一个实时数据处理和分析平台,可以将各种数据源连接到一起,对数据进行实时处理、分析和可视化。
源镜像 docker.io/apache/streampark:2.1.6
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:2.1.6
镜像ID sha256:46c04c0e802a406e29d8f01505be7808a2ce4c2a525ba983389a230d537ea35e
镜像TAG 2.1.6
大小 1.67GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /usr/sbin/tini -- /streampark/bin/streampark.sh start_docker
工作目录
OS/平台 linux/amd64
浏览量 15 次
贡献者 go*******2@126.com
镜像创建 2025-07-09T10:01:44.637128792Z
同步时间 2025-08-28 10:20
更新时间 2025-08-28 23:30
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin JAVA_HOME=/usr/lib/jvm/jdk8 TINI_VERSION=v0.19.0
镜像标签
2025-07-09T10:00:30.527Z: 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 2cedd3af2c8f6a6cb9068bb427ed9579689580b0: org.opencontainers.image.revision https://github.com/apache/streampark: org.opencontainers.image.source streampark: org.opencontainers.image.title https://github.com/apache/streampark: org.opencontainers.image.url 2.1.6: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-07-09 18:01:44  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/sbin/tini" "--" "/streampark/bin/streampark.sh" "start_docker"]
                        
# 2025-07-09 18:01:44  226.11MB 执行命令并创建新的镜像层
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
                        
# 2025-07-09 18:01:42  206.10MB 复制新文件或目录到容器中
COPY dist/apache-streampark_*-bin.tar.gz / # buildkit
                        
# 2025-07-09 18:01:42  24.06KB 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c chmod +x /usr/sbin/tini # buildkit
                        
# 2025-07-09 18:01:42  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
                        
# 2025-07-09 18:01:41  0.00B 执行命令并创建新的镜像层
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c echo "TARGETPLATFORM: $TARGETPLATFORM" # buildkit
                        
# 2025-07-09 18:01:41  0.00B 设置环境变量 TINI_VERSION
ENV TINI_VERSION=v0.19.0
                        
# 2025-07-09 18:01:41  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-07-09 18:01:41  501.10MB 执行命令并创建新的镜像层
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
                        
# 2025-07-09 18:01:23  0.00B 设置环境变量 JAVA_HOME
ENV JAVA_HOME=/usr/lib/jvm/jdk8
                        
# 2025-07-09 18:01:23  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
                        
# 2025-07-09 18:01:23  420.40MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt update && apt install -y openjdk-8-jdk # buildkit
                        
# 2025-07-09 18:01:03  241.29MB 执行命令并创建新的镜像层
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
                        
# 2025-07-09 18:01:03  0.00B 指定运行容器时使用的用户
USER root
                        
# 2025-06-20 18:16:49  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-06-20 18:16:49  77.87MB 
/bin/sh -c #(nop) ADD file:36d136943d44dbe1fed342b933d9abb8e0694bf141a0c0af85ca83cc73e25158 in / 
                        
# 2025-06-20 18:16:46  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=22.04
                        
# 2025-06-20 18:16:46  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-06-20 18:16:46  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-06-20 18:16:46  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:46c04c0e802a406e29d8f01505be7808a2ce4c2a525ba983389a230d537ea35e",
    "RepoTags": [
        "apache/streampark:2.1.6",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark:2.1.6"
    ],
    "RepoDigests": [
        "apache/streampark@sha256:1dd86921fa125256b88659c7e930dcc8377870641a68893828eede18514b09b7",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/streampark@sha256:d40b29119369d6a6253f6b19cb5f3ab531d14a3486f0ecbd1065b27ffe5cb0dc"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-07-09T10:01:44.637128792Z",
    "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": "2025-07-09T10:00:30.527Z",
            "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": "2cedd3af2c8f6a6cb9068bb427ed9579689580b0",
            "org.opencontainers.image.source": "https://github.com/apache/streampark",
            "org.opencontainers.image.title": "streampark",
            "org.opencontainers.image.url": "https://github.com/apache/streampark",
            "org.opencontainers.image.version": "2.1.6"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1672916810,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/1adb3459116fbe52e2898d6bce1e25e4a8bf169fcd642959510efa1b388cb80c/diff:/var/lib/docker/overlay2/877d12a260243180fcd90288fb3be952ff03d801bccffc3e6c555f7afaa4c249/diff:/var/lib/docker/overlay2/b057eb29e61eef3b4453c80ff6a9ec8de095d8ded66d2f60085f8586dcdc698e/diff:/var/lib/docker/overlay2/ea00ce78e2021ec10365b863a1d4d7507aeae330dfd3a8d2e51a041205cf3cda/diff:/var/lib/docker/overlay2/09eb62a65edeed5a7fd440e1c5f83162ef837a512e64ba2b61b518a44e1a6eaa/diff:/var/lib/docker/overlay2/27d0ff42a9c94b4fc425f3c19348869f7ba707142a932fe069796b2fb52f5f8a/diff:/var/lib/docker/overlay2/601c1e9bd3a50727f4c42b844584c4ec7b37938f8ee4cbcdff80dc5f79aea75e/diff:/var/lib/docker/overlay2/e2d709d535ebf879a13db9d64ba749ac101ee07c926c91aabdbb7ddffea2665e/diff:/var/lib/docker/overlay2/c22dcf1d7ec0a7d216e47a0928f6846fa3c8e40c62ad80c330ec2c4d07a8af75/diff",
            "MergedDir": "/var/lib/docker/overlay2/e37f6737b9faf6a41ebc6d9c493bf827740cf72edab0e24b80e258a58ee40e0f/merged",
            "UpperDir": "/var/lib/docker/overlay2/e37f6737b9faf6a41ebc6d9c493bf827740cf72edab0e24b80e258a58ee40e0f/diff",
            "WorkDir": "/var/lib/docker/overlay2/e37f6737b9faf6a41ebc6d9c493bf827740cf72edab0e24b80e258a58ee40e0f/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:8d6b7eb76b62254226e7ea4253257e827eba1e39d2ba0835a671ff47eb731bc2",
            "sha256:cda01dbd384390ec48fbebd1205b3d4ee596c23f5bbb2bbc908fdadee2ff433d",
            "sha256:f7858171dcbaf44491bfa6f7f053e48bb18ca9077f0cd71b66d025c7296c24d0",
            "sha256:1f9132cef79155f22df2f29943d243478f634498cfe87a952ec3535478a265a6",
            "sha256:1943ad9172bf69248108d68165cd684c42a69e492a8ac8423bbd0c0cec7aba38",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:16f48ccb661c93fa5f53b0aedd107b75ddf87d609b5375e65a6e1161681f43bd",
            "sha256:ba40745c64a676802c48f2a2a8797df29b2f4e0150b4189f515e04d3f2c854b5",
            "sha256:ee00a1a4b28d9ea3b569009527fa67a670fbb54e405f8a909099b5c1b2ee195c",
            "sha256:b724acb67b0e0f0a1658a829f157a9c1fa4cb7638cef485259706373178719ae"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-08-28T10:18:33.831216423+08:00"
    }
}

更多版本

docker.io/apache/streampark:2.1.4

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

docker.io/apache/streampark:latest

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

docker.io/apache/streampark:2.1.6

linux/amd64 docker.io1.67GB2025-08-28 10:20
14