-
Notifications
You must be signed in to change notification settings - Fork 22
/
Dockerfile
75 lines (62 loc) · 2.85 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
## -*- docker-image-name: "docker-crate" -*-
#
# Crate Dockerfile
# https://github.com/crate/docker-crate
#
FROM almalinux:9
# Install prerequisites and clean up repository indexes again
RUN dnf install --nodocs --assumeyes gzip python3 shadow-utils tar \
&& dnf clean all \
&& rm -rf /var/cache/yum
# Install CrateDB
RUN groupadd crate \
&& useradd -u 1000 -g crate -d /crate crate \
&& export PLATFORM="$( \
case $(uname --m) in \
x86_64) echo x64_linux ;; \
aarch64) echo aarch64_linux ;; \
esac)" \
&& export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.9.5.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.5.tar.gz.asc crate-5.9.5.tar.gz \
&& rm -rf "$GNUPGHOME" crate-5.9.5.tar.gz.asc \
&& tar -xf crate-5.9.5.tar.gz -C /crate --strip-components=1 \
&& rm crate-5.9.5.tar.gz
# Install crash
RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.31.5 \
&& curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.31.5.asc \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
&& gpg --batch --verify crash_standalone_0.31.5.asc crash_standalone_0.31.5 \
&& rm -rf "$GNUPGHOME" crash_standalone_0.31.5.asc \
&& mv crash_standalone_0.31.5 /usr/local/bin/crash \
&& chmod +x /usr/local/bin/crash
ENV PATH /crate/bin:$PATH
# Default heap size for Docker, can be overwritten by args
ENV CRATE_HEAP_SIZE 512M
RUN mkdir -p /data/data /data/log
VOLUME /data
WORKDIR /data
# http: 4200 tcp
# transport: 4300 tcp
# postgres protocol ports: 5432 tcp
EXPOSE 4200 4300 5432
# These COPY commands have been moved before the last one due to the following issues:
# https://github.com/moby/moby/issues/37965#issuecomment-448926448
# https://github.com/moby/moby/issues/38866
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 <[email protected]>" \
org.opencontainers.image.created="2024-12-10T16:21:56.023234" \
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.5"
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["crate"]