From 90e43adf2b67ebfebfba65a8f073c105ad80019e Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 12 Oct 2021 02:22:05 +0200 Subject: [PATCH] Added elasticsearch configuration, to make it work with single node (#794) * - Added missing parameters on the openapi definition of get an observations tile request * - changed default background map to osm * Revert "- changed default background map to osm" This reverts commit 554c065c6699ad6c0585f5c09ce34e746d5b3dc2. * - added discovery.type to elasticsearch configuration, to prevent failed bootstrap checks Co-authored-by: doublebyte1 --- docker/examples/elastic/ES/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/examples/elastic/ES/Dockerfile b/docker/examples/elastic/ES/Dockerfile index 4e96673..d403e5c 100644 --- a/docker/examples/elastic/ES/Dockerfile +++ b/docker/examples/elastic/ES/Dockerfile @@ -50,6 +50,7 @@ RUN wget https://raw.githubusercontent.com/geopython/pygeoapi/master/tests/load_ RUN echo "xpack.security.enabled: false" >> config/elasticsearch.yml RUN echo "http.host: 0.0.0.0" >> config/elasticsearch.yml +RUN echo "discovery.type: single-node" >> config/elasticsearch.yml RUN yum --enablerepo=extras -y install epel-release \ && yum install -y python3 python3-pip python3-setuptools python-typing \