mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 05:51:49 +08:00
88fda477c6
Signed-off-by: Zoey <zoey@z0ey.de>
14 lines
412 B
Docker
14 lines
412 B
Docker
# Probably from here https://github.com/elastic/elasticsearch/blob/main/distribution/docker/src/docker/Dockerfile
|
|
FROM elasticsearch:7.17.8
|
|
|
|
RUN elasticsearch-plugin install --batch ingest-attachment
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
tzdata \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9200 || exit 1
|