Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
version: '3.7'
services:
curator:
build:
context: curator
links:
- elasticsearch
restart: always
elasticsearch:
environment:
'node.name': elasticsearch.shore.co.il
'cluster.name': shore.co.il
'discovery.type': single-node
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:9200/_cat/health"]
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2
restart: always
volumes:
- elasticsearch:/usr/share/elasticsearch/data
kibana:
environment:
ELASTICSEARCH_HOSTS: |
["http://elasticsearch:9200"]
TELEMETARY_OPTIN: !!str false
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:5601/api/status"]
image: docker.elastic.co/kibana/kibana-oss:7.10.2
links:
- elasticsearch
restart: always
volumes:
elasticsearch:
networks:
default:
name: shore