From f5e136d795c6c15d3d25d91a2b50b07d13241f4e Mon Sep 17 00:00:00 2001 From: devanbenz <devandbenz@gmail.com> Date: Wed, 21 May 2025 13:21:38 -0500 Subject: [PATCH] feat: Add 2.7.12 as influxdb version * Add .idea to gitignore so it will not get committed --- influxdb/2.7/Dockerfile | 2 +- influxdb/2.7/alpine/Dockerfile | 2 +- influxdb/test/.gitignore | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/influxdb/2.7/Dockerfile b/influxdb/2.7/Dockerfile index ea5b163..028497e 100644 --- a/influxdb/2.7/Dockerfile +++ b/influxdb/2.7/Dockerfile @@ -49,7 +49,7 @@ RUN case "$(dpkg --print-architecture)" in \ gosu nobody true # Install the influxd server -ENV INFLUXDB_VERSION 2.7.11 +ENV INFLUXDB_VERSION 2.7.12 RUN case "$(dpkg --print-architecture)" in \ *amd64) arch=amd64 ;; \ *arm64) arch=arm64 ;; \ diff --git a/influxdb/2.7/alpine/Dockerfile b/influxdb/2.7/alpine/Dockerfile index 2f797af..abb3d30 100644 --- a/influxdb/2.7/alpine/Dockerfile +++ b/influxdb/2.7/alpine/Dockerfile @@ -31,7 +31,7 @@ RUN addgroup -S -g 1000 influxdb && \ chown -R influxdb:influxdb /home/influxdb # Install the infuxd server -ENV INFLUXDB_VERSION 2.7.11 +ENV INFLUXDB_VERSION 2.7.12 RUN case "$(apk --print-arch)" in \ x86_64) arch=amd64 ;; \ aarch64) arch=arm64 ;; \ diff --git a/influxdb/test/.gitignore b/influxdb/test/.gitignore index 1d92e36..3751d2f 100644 --- a/influxdb/test/.gitignore +++ b/influxdb/test/.gitignore @@ -1,2 +1,3 @@ tmp logs +.idea/ \ No newline at end of file -- GitLab