Skip to content

Commit 7ab8e7c

Browse files
author
Crate Jenkins
committed
Updated Dockerfile to use CrateDB version 6.1.1.
1 parent 72befa3 commit 7ab8e7c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ RUN groupadd crate \
1919
x86_64) echo x64_linux ;; \
2020
aarch64) echo aarch64_linux ;; \
2121
esac)" \
22-
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-6.0.4.tar.gz \
22+
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-6.1.1.tar.gz \
2323
&& curl -fSL -O ${CRATE_URL} \
2424
&& curl -fSL -O ${CRATE_URL}.asc \
2525
&& export GNUPGHOME="$(mktemp -d)" \
2626
&& gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
27-
&& gpg --batch --verify crate-6.0.4.tar.gz.asc crate-6.0.4.tar.gz \
28-
&& rm -rf "$GNUPGHOME" crate-6.0.4.tar.gz.asc \
29-
&& tar -xf crate-6.0.4.tar.gz -C /crate --strip-components=1 \
30-
&& rm crate-6.0.4.tar.gz
27+
&& gpg --batch --verify crate-6.1.1.tar.gz.asc crate-6.1.1.tar.gz \
28+
&& rm -rf "$GNUPGHOME" crate-6.1.1.tar.gz.asc \
29+
&& tar -xf crate-6.1.1.tar.gz -C /crate --strip-components=1 \
30+
&& rm crate-6.1.1.tar.gz
3131

3232
# Install crash
3333
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
6161
COPY --chown=1000:0 config/log4j2.properties /crate/config/log4j2.properties
6262

6363
LABEL maintainer="Crate.io <[email protected]>" \
64-
org.opencontainers.image.created="2025-11-19T11:20:09.112895" \
64+
org.opencontainers.image.created="2025-11-19T12:06:28.986794" \
6565
org.opencontainers.image.title="crate" \
6666
org.opencontainers.image.description="CrateDB is a distributed SQL database that handles massive amounts of machine data in real-time." \
6767
org.opencontainers.image.url="https://crate.io/products/cratedb/" \
6868
org.opencontainers.image.source="https://github.com/crate/docker-crate" \
6969
org.opencontainers.image.vendor="Crate.io" \
70-
org.opencontainers.image.version="6.0.4"
70+
org.opencontainers.image.version="6.1.1"
7171

7272
COPY docker-entrypoint.sh /
7373

0 commit comments

Comments
 (0)