diff --git a/Storage/glusterfs/11.2/24.03-lts-sp2/Dockerfile b/Storage/glusterfs/11.2/24.03-lts-sp2/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..f990092e37fa17e0a8485ae8de8213e6c06bb7f0 --- /dev/null +++ b/Storage/glusterfs/11.2/24.03-lts-sp2/Dockerfile @@ -0,0 +1,29 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG VERSION=11.2 + +RUN dnf install -y wget make gcc-c++ rpcgen \ + autoconf automake libtool liburing liburing-devel \ + gperftools gperftools-devel \ + flex bison openssl-devel libuuid libuuid-devel \ + libacl libacl-devel zlib zlib-devel \ + libxml2 libxml2-devel libtirpc libtirpc-devel \ + userspace-rcu userspace-rcu-devel \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /opt + +RUN wget https://github.com/gluster/glusterfs/archive/refs/tags/v${VERSION}.tar.gz \ + && tar -zxvf v${VERSION}.tar.gz \ + && rm -f v${VERSION}.tar.gz + +WORKDIR /opt/glusterfs-${VERSION} + +RUN ./autogen.sh \ + && ./configure \ + && make -j \ + && make install + +CMD ["gluster", "--help"] \ No newline at end of file diff --git a/Storage/glusterfs/README.md b/Storage/glusterfs/README.md index dd068641da8879c9f88a810d0a3f403190cae508..f9ef158fa715d3470f77c3da6fdcd705c55a0540 100644 --- a/Storage/glusterfs/README.md +++ b/Storage/glusterfs/README.md @@ -18,6 +18,7 @@ The tag of each `glusterfs` docker image is consist of the version of `glusterfs | Tag | Currently | Architectures | |-----------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|---------------| +|[11.2-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Storage/glusterfs/11.2/24.03-lts-sp2/Dockerfile) | glusterfs 11.2 on openEuler 24.03-LTS-SP2 | amd64, arm64 | | [11.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Storage/glusterfs/11.1/24.03-lts-sp1/Dockerfile) | GlusterFS 11.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Storage/glusterfs/doc/image-info.yml b/Storage/glusterfs/doc/image-info.yml index 72ad0a5c0f1ff18b44fc48933b80e720fc3a474d..6ea20ceadf1615e3b90d10a1bde618ecda2d799f 100644 --- a/Storage/glusterfs/doc/image-info.yml +++ b/Storage/glusterfs/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[11.2-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Storage/glusterfs/11.2/24.03-lts-sp2/Dockerfile) | glusterfs 11.2 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[11.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Storage/glusterfs/11.1/24.03-lts-sp1/Dockerfile)| GlusterFS 11.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -91,4 +92,4 @@ dependency: - protobuf - attr - openssl - - acl + - acl \ No newline at end of file diff --git a/Storage/glusterfs/meta.yml b/Storage/glusterfs/meta.yml index 4695872142a8714b5a8b19b594f8f8c2392b90de..000859f86d5cc34da5f50f7fc12e5646300104b1 100644 --- a/Storage/glusterfs/meta.yml +++ b/Storage/glusterfs/meta.yml @@ -1,4 +1,6 @@ 11.1-oe2403sp1: path: 11.1/24.03-lts-sp1/Dockerfile 11.2-oe2403sp1: - path: 11.2/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 11.2/24.03-lts-sp1/Dockerfile +11.2-oe2403sp2: + path: 11.2/24.03-lts-sp2/Dockerfile \ No newline at end of file