-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Due to a mistake in docker-library@6d4f8a1 5.9.11 was overwritten and 5.9.12 didn't have an entry
a1c5dc2
to
fc7c0af
Compare
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
approved these changes
Mar 24, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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