From f188bf9849f40d1e2681314144c8d9b87d66bb6d Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Sun, 28 Sep 2025 00:06:56 +0000 Subject: [PATCH] 24.03-lts-sp2 update hbase to 2.6.3 --- Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile | 19 +++++++++++++++++++ Bigdata/hbase/README.md | 1 + Bigdata/hbase/doc/image-info.yml | 1 + Bigdata/hbase/meta.yml | 4 +++- 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile diff --git a/Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile b/Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..43447117 --- /dev/null +++ b/Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile @@ -0,0 +1,19 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM $BASE + +ARG VERSION=2.6.3 + +RUN curl -fSL -o hbase.tar.gz https://dlcdn.apache.org/hbase/${VERSION}/hbase-${VERSION}-bin.tar.gz; \ + mkdir -p /usr/local/hbase && \ + tar -zxf hbase.tar.gz -C /usr/local/hbase --strip-components=1 && \ + rm -rf hbase.tar.gz + +ENV PATH=$PATH:/usr/local/hbase/bin + +RUN yum install -y java-11-openjdk-devel findutils && \ + yum clean all + +ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk + +EXPOSE 8080 8085 9090 9095 2181 16010 +ENTRYPOINT ["hbase", "version"] \ No newline at end of file diff --git a/Bigdata/hbase/README.md b/Bigdata/hbase/README.md index 75db1fce..36ba7e40 100644 --- a/Bigdata/hbase/README.md +++ b/Bigdata/hbase/README.md @@ -16,6 +16,7 @@ Learn more on [hbase website](https://hbase.apache.org/). The tag of each hbase docker image is consist of the version of hbase and the version of basic image. The details are as follows | Tags | Currently | Architectures| |--|--|--| +|[2.6.3-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile) | hbase 2.6.3 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[2.6.2-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/hbase/2.6.2/24.03-lts-sp1/Dockerfile)| Apache HBase 2.6.2 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Bigdata/hbase/doc/image-info.yml b/Bigdata/hbase/doc/image-info.yml index f0ac7ecd..889722c9 100644 --- a/Bigdata/hbase/doc/image-info.yml +++ b/Bigdata/hbase/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tags | Currently | Architectures| |------|-----------|---------------| + |[2.6.3-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/hbase/2.6.3/24.03-lts-sp2/Dockerfile) | hbase 2.6.3 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[2.6.2-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/hbase/2.6.2/24.03-lts-sp1/Dockerfile)| Apache HBase 2.6.2 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | diff --git a/Bigdata/hbase/meta.yml b/Bigdata/hbase/meta.yml index b4709968..dc87247d 100644 --- a/Bigdata/hbase/meta.yml +++ b/Bigdata/hbase/meta.yml @@ -1,4 +1,6 @@ 2.6.2-oe2403sp1: path: 2.6.2/24.03-lts-sp1/Dockerfile 2.6.3-oe2403sp1: - path: 2.6.3/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 2.6.3/24.03-lts-sp1/Dockerfile +2.6.3-oe2403sp2: + path: 2.6.3/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee