From b7fb32b38be8fd62fc4313b9eac68c98603ae5b8 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Thu, 20 Nov 2025 00:03:29 +0000 Subject: [PATCH] 24.03-lts-sp2 update influxdb to 3.7.0 --- Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile | 15 +++++++++++++++ Database/influxdb/README.md | 1 + Database/influxdb/doc/image-info.yml | 1 + Database/influxdb/meta.yml | 4 +++- 4 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile diff --git a/Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile b/Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..37a757de --- /dev/null +++ b/Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile @@ -0,0 +1,15 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=3.7.0 +ENV INFLUXDB_URL=https://dl.influxdata.com/influxdb/releases/influxdb3-core-${VERSION}_linux_${TARGETARCH}.tar.gz + +WORKDIR /influxdb +RUN curl -fSL -o influxdb.tar.gz ${INFLUXDB_URL} && \ + tar -zxf influxdb.tar.gz -C /influxdb --strip-components=1 && \ + rm influxdb.tar.gz + +RUN ln -sf /influxdb/influxdb3 /usr/bin/influxdb3 + +CMD ["/usr/bin/influxdb3", "serve", "--node-id", "host01", "--object-store", "file", "--data-dir", "~/.influxdb3" ] \ No newline at end of file diff --git a/Database/influxdb/README.md b/Database/influxdb/README.md index d81bd1b4..ec9c57d7 100644 --- a/Database/influxdb/README.md +++ b/Database/influxdb/README.md @@ -17,6 +17,7 @@ Learn more about influxdb at [https://influxdb.io/](https://influxdb.io/). The tag of each `influxdb` docker image is consist of the version of `influxdb` and the version of basic image. The details are as follows | Tag | Currently | Architectures | |----------|-------------|------------------| +|[3.7.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile) | influxdb 3.7.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.5.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.5.0/24.03-lts-sp2/Dockerfile) | influxdb 3.5.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.4.2-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.4.2/24.03-lts-sp2/Dockerfile) | influxdb 3.4.2 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.4.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.4.1/24.03-lts-sp1/Dockerfile) | influxdb 3.4.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | diff --git a/Database/influxdb/doc/image-info.yml b/Database/influxdb/doc/image-info.yml index 49b582da..9c730772 100644 --- a/Database/influxdb/doc/image-info.yml +++ b/Database/influxdb/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[3.7.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.7.0/24.03-lts-sp2/Dockerfile) | influxdb 3.7.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.5.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.5.0/24.03-lts-sp2/Dockerfile) | influxdb 3.5.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.4.2-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.4.2/24.03-lts-sp2/Dockerfile) | influxdb 3.4.2 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.4.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/influxdb/3.4.1/24.03-lts-sp1/Dockerfile) | influxdb 3.4.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | diff --git a/Database/influxdb/meta.yml b/Database/influxdb/meta.yml index f1bc6ced..bf3a6407 100644 --- a/Database/influxdb/meta.yml +++ b/Database/influxdb/meta.yml @@ -9,4 +9,6 @@ 3.4.2-oe2403sp2: path: 3.4.2/24.03-lts-sp2/Dockerfile 3.5.0-oe2403sp2: - path: 3.5.0/24.03-lts-sp2/Dockerfile \ No newline at end of file + path: 3.5.0/24.03-lts-sp2/Dockerfile +3.7.0-oe2403sp2: + path: 3.7.0/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee