Requires a reset + reindex of everything (well, that's the easiest way to get things indexed properly again), which will loose us the Cloud stats. Before doing this, export those to MongDB and upgrade the statscollector to the version that I'll be committing soon.
11 lines
337 B
Plaintext
11 lines
337 B
Plaintext
FROM docker.elastic.co/elasticsearch/elasticsearch:6.1.1
|
|
LABEL maintainer Sybren A. Stüvel <sybren@blender.studio>
|
|
|
|
RUN elasticsearch-plugin remove --purge x-pack
|
|
|
|
ADD elasticsearch.yml jvm.options /usr/share/elasticsearch/config/
|
|
|
|
USER root
|
|
RUN chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/config/
|
|
USER elasticsearch
|