Sign inSign up
aerospike logo

aerospike:ce-8.1.2.1_1

Multi-platform
Also known as:
ce-8.1.2.1
Databases & storage
Index digest

sha256:0e512fb0a7235d6f9295e09d17e9de375e3959d6b308af836b5e782393fec4ab

OS/ARCH

Compressed size

121.99 MB

Last pushed

5 months by doijanky

Type

Image

Vulnerabilities

1
18
83
21
1

Manifest digest

sha256:d3217e2709b1ed7e40d47b89987e721532c5cede855c3d60ae118600f41f7e02

Layers (17)

ubuntu:d9f96049b7c90a2b05b5dda9b947fcba8cef0e036a6c46bbe7a9eff7aefd15f8
0
1
70
20
0
aerospike:ce-8.1.2.1_1
1
18
17
11
1

5

LABEL org.opencontainers.image.title=Aerospike Community Server org.opencontainers.image.description=Aerospike is a real-time database with predictable performance at petabyte scale with microsecond latency over billions of transactions. org.opencontainers.image.documentation=https://hub.docker.com/_/aerospike org.opencontainers.image.base.name=docker.io/library/ubuntu:24.04 org.opencontainers.image.source=https://github.com/aerospike/aerospike-server.docker org.opencontainers.image.vendor=Aerospike org.opencontainers.image.version=8.1.2.1 org.opencontainers.image.url=https://github.com/aerospike/aerospike-server.docker

0 B


6

ARG AEROSPIKE_EDITION=community

0 B


7

ENV AEROSPIKE_LINUX_BASE=ubuntu:24.04

0 B


8

SHELL [/bin/bash -Eeuo pipefail -c]

0 B


9

RUN |1 AEROSPIKE_EDITION=community /bin/bash -Eeuo pipefail -c apt-get update; apt-get install -y --no-install-recommends ca-certificates procps ; rm -rf /var/lib/apt/lists/* # buildkit

1.03 MB


10

RUN |1 AEROSPIKE_EDITION=community /bin/bash -Eeuo pipefail -c { apt-get update; apt-get install -y --no-install-recommends curl; ARCH="$(dpkg --print-architecture)"; if [ "${ARCH}" = "amd64" ]; then tiniUrl='https://github.com/aerospike/tini/releases/download/1.0.1/as-tini-static'; tiniSha='d1f6826dd70cdd88dde3d5a20d8ed248883a3bc2caba3071c8a3a9b0e0de5940'; pkgLink='https://download.aerospike.com/artifacts/aerospike-server-community/8.1.2.1/aerospike-server-community_8.1.2.1_tools-13.0.0_ubuntu24.04_x86_64.tgz'; pkgSha='22350b57714fec888705d7dc9fa33e261e36d8dcd24b21d834652450b6009060'; elif [ "${ARCH}" = "arm64" ]; then tiniUrl='https://github.com/aerospike/tini/releases/download/1.0.1/as-tini-static-arm64'; tiniSha='1c398e5283af2f33888b7d8ac5b01ac89f777ea27c85d25866a40d1e64d0341b'; pkgLink='https://download.aerospike.com/artifacts/aerospike-server-community/8.1.2.1/aerospike-server-community_8.1.2.1_tools-13.0.0_ubuntu24.04_aarch64.tgz'; pkgSha='41efbed30b36c9c710a1432939fafdfb413ce7eea4a55e1fbc08e3dea92d3be7'; else echo >&2 "error: unsupported architecture '${ARCH}'"; exit 1; fi; }; { curl -fL -o /usr/bin/as-tini-static "${tiniUrl}"; echo "${tiniSha} */usr/bin/as-tini-static" | sha256sum --strict --check -; chmod +x /usr/bin/as-tini-static; }; { mkdir -p /tmp/aerospike; curl -fL -o /tmp/aerospike/pkg.tgz "${pkgLink}"; echo "${pkgSha} */tmp/aerospike/pkg.tgz" | sha256sum --strict --check -; tar -xzf /tmp/aerospike/pkg.tgz --strip-components=1 -C /tmp/aerospike; }; { apt-get install -y --no-install-recommends /tmp/aerospike/aerospike-server-*.deb /tmp/aerospike/aerospike-tools*.deb; }; { mkdir -p /etc/aerospike /licenses /var/log/aerospike /var/run/aerospike; cp /tmp/aerospike/LICENSE /licenses/; if [ "${AEROSPIKE_EDITION}" = "enterprise" ] || [ "${AEROSPIKE_EDITION}" = "federal" ]; then if [ -f /tmp/aerospike/features.conf ]; then cp /tmp/aerospike/features.conf /etc/aerospike/features.conf; fi; fi; rm -rf /tmp/aerospike; apt-mark auto curl; apt-get autoremove -y --purge; rm -rf /var/lib/apt/lists/*; }; echo "done"; # buildkit

98 MB


11

COPY aerospike.template.conf /etc/aerospike/aerospike.template.conf # buildkit

1.19 KB


12

EXPOSE map[3000/tcp:{} 3001/tcp:{} 3002/tcp:{}]

0 B


13

COPY entrypoint.sh /entrypoint.sh # buildkit

1.11 KB


14

STOPSIGNAL SIGTERM

0 B


15

ENTRYPOINT ["/usr/bin/as-tini-static" "-r" "SIGUSR1" "-t" "SIGTERM" "--" "/entrypoint.sh"]

0 B


16

CMD ["asd"]

0 B