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 0000000000000000000000000000000000000000..4344711758da3ef40c4a2eea118a07de039e12e0 --- /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 75db1fce35961edb7e0422f4e5094d5aebedd0be..36ba7e4041182b42d1ddb8e8f03437d7f65a1d70 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 f0ac7ecd1e392c3394cd5854bd3a540196ad3815..889722c9976776219af12032088379541c7e273d 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 b470996812967601f91c7e85f80540d3e3ac1e03..dc87247dd9045c49199f94109e73b16f4ee29223 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