Add ES data rotate & cleanup
[ta/caas-logging.git] / docker-build / elasticsearch / Dockerfile
1 # Copyright 2019 Nokia
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM centos:7.6.1810
16 MAINTAINER Levente Kale <levente.kale@nokia.com>
17
18 ARG VERSION
19 ENV ES_VERSION=$VERSION
20
21 ENV PATH /usr/share/elasticsearch/bin:$PATH
22 ENV JAVA_HOME /usr/lib/jvm/jre-1.8.0-openjdk
23 ENV DOWNLOAD_URL "https://artifacts.elastic.co/downloads/elasticsearch"
24 ENV ES_TARBAL "${DOWNLOAD_URL}/elasticsearch-oss-${ES_VERSION}-linux-x86_64.tar.gz"
25
26 WORKDIR /usr/share/elasticsearch
27
28 RUN groupadd -g 202 elasticsearch \
29 &&  adduser -u 202 -g 202 -d /usr/share/elasticsearch elasticsearch \
30 &&  yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
31 &&  yum install -y --setopt=skip_missing_names_on_install=False \
32       java-1.8.0-openjdk-headless \
33       unzip \
34       which \
35       coreutils \
36       cronie \
37       supervisor \
38 &&  yum clean all \
39 &&  curl -fsSL ${ES_TARBAL} | tar zx --strip-components=1 \
40 &&  chown -R elasticsearch:elasticsearch /usr/share/elasticsearch \
41 # workaround for Elasticsearch: this way ES can list the used plugins, and remove the jdk folder (open jdk slimmer)
42 &&  cp -al /usr/share/elasticsearch/modules/* /usr/share/elasticsearch/plugins/ \
43 &&  rm -rf /usr/share/elasticsearch/jdk \
44 # workaround end
45 &&  sed '/GC logging/Q' -i /usr/share/elasticsearch/config/jvm.options   # disable GC logging
46
47 COPY elasticsearch-logrotate.sh /etc/cron.hourly/
48 COPY elasticsearch-setindex.sh /usr/share/elasticsearch/
49 COPY log4j2.properties /usr/share/elasticsearch/config/