Skip to content

Fix CrateDB 5.9.12 and 5.9.11 #18691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 24, 2025

Conversation

BaurzhanSakhariev
Copy link
Contributor

@BaurzhanSakhariev BaurzhanSakhariev commented Mar 24, 2025

Due to a mistake in 6d4f8a1

5.9.11 was overwritten and 5.9.12 didn't have an entry

Fixes crate/docker-crate#244

@BaurzhanSakhariev BaurzhanSakhariev requested a review from a team as a code owner March 24, 2025 08:07
@BaurzhanSakhariev BaurzhanSakhariev marked this pull request as draft March 24, 2025 08:09
Due to a mistake in docker-library@6d4f8a1

5.9.11 was overwritten and 5.9.12 didn't have an entry
@BaurzhanSakhariev BaurzhanSakhariev marked this pull request as ready for review March 24, 2025 08:31
Copy link

Diff for fc7c0af:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index e429ce3..1c358c1 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -9,7 +9,11 @@ Tags: 5.8.7, 5.8
 Architectures: amd64, arm64v8
 GitCommit: 1e8b7379346e188f5de637d9681d450d9435cb0a
 
-Tags: 5.9.11, 5.9
+Tags: 5.9.11
+Architectures: amd64, arm64v8
+GitCommit: f4ad4959f78765d2d7f0929acd49c2bdf449e8a1
+
+Tags: 5.9.12, 5.9
 Architectures: amd64, arm64v8
 GitCommit: 42c7218d834e5c8d2a5db3406aef0d1e7efa2092
 
diff --git a/_bashbrew-list b/_bashbrew-list
index 6faf530..71ab113 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -4,6 +4,7 @@ crate:5.8
 crate:5.8.7
 crate:5.9
 crate:5.9.11
+crate:5.9.12
 crate:5.10
 crate:5.10.3
 crate:latest
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 6c94133..f7dff52 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,4 +1,5 @@
 crate:5.7
 crate:5.8
 crate:5.9
+crate:5.9.11
 crate:latest
diff --git a/crate_5.9/Dockerfile b/crate_5.9.11/Dockerfile
similarity index 87%
copy from crate_5.9/Dockerfile
copy to crate_5.9.11/Dockerfile
index 1f87eaf..e24de54 100644
--- a/crate_5.9/Dockerfile
+++ b/crate_5.9.11/Dockerfile
@@ -19,15 +19,15 @@ RUN groupadd crate \
             x86_64)  echo x64_linux ;; \
             aarch64) echo aarch64_linux ;; \
         esac)" \
-    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.9.12.tar.gz \
+    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.9.11.tar.gz \
     && curl -fSL -O ${CRATE_URL} \
     && curl -fSL -O ${CRATE_URL}.asc \
     && export GNUPGHOME="$(mktemp -d)" \
     && gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
-    && gpg --batch --verify crate-5.9.12.tar.gz.asc crate-5.9.12.tar.gz \
-    && rm -rf "$GNUPGHOME" crate-5.9.12.tar.gz.asc \
-    && tar -xf crate-5.9.12.tar.gz -C /crate --strip-components=1 \
-    && rm crate-5.9.12.tar.gz
+    && gpg --batch --verify crate-5.9.11.tar.gz.asc crate-5.9.11.tar.gz \
+    && rm -rf "$GNUPGHOME" crate-5.9.11.tar.gz.asc \
+    && tar -xf crate-5.9.11.tar.gz -C /crate --strip-components=1 \
+    && rm crate-5.9.11.tar.gz
 
 # Install crash
 RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.31.5 \
@@ -61,13 +61,13 @@ COPY --chown=1000:0 config/crate.yml /crate/config/crate.yml
 COPY --chown=1000:0 config/log4j2.properties /crate/config/log4j2.properties
 
 LABEL maintainer="Crate.io <office@crate.io>" \
-    org.opencontainers.image.created="2025-03-18T16:15:41.208927" \
+    org.opencontainers.image.created="2025-02-27T15:04:32.414992" \
     org.opencontainers.image.title="crate" \
     org.opencontainers.image.description="CrateDB is a distributed SQL database that handles massive amounts of machine data in real-time." \
     org.opencontainers.image.url="https://crate.io/products/cratedb/" \
     org.opencontainers.image.source="https://github.com/crate/docker-crate" \
     org.opencontainers.image.vendor="Crate.io" \
-    org.opencontainers.image.version="5.9.12"
+    org.opencontainers.image.version="5.9.11"
 
 COPY docker-entrypoint.sh /
 
diff --git a/crate_5.7/config/crate.yml b/crate_5.9.11/config/crate.yml
similarity index 100%
copy from crate_5.7/config/crate.yml
copy to crate_5.9.11/config/crate.yml
diff --git a/crate_5.7/config/log4j2.properties b/crate_5.9.11/config/log4j2.properties
similarity index 100%
copy from crate_5.7/config/log4j2.properties
copy to crate_5.9.11/config/log4j2.properties
diff --git a/crate_5.7/docker-entrypoint.sh b/crate_5.9.11/docker-entrypoint.sh
similarity index 100%
copy from crate_5.7/docker-entrypoint.sh
copy to crate_5.9.11/docker-entrypoint.sh

Relevant Maintainers:

@yosifkit yosifkit merged commit fa9c57c into docker-library:master Mar 24, 2025
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Docker image tag for 5.9.12 is missing and 5.9.11 contains actually 5.9.12
2 participants