-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelasticsearch.yml
More file actions
92 lines (83 loc) · 1.89 KB
/
elasticsearch.yml
File metadata and controls
92 lines (83 loc) · 1.89 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: '3.5'
services:
es01:
image: local/elastic
build:
context: ./backend/elastic
container_name: es01
ulimits:
memlock:
soft: -1
hard: -1
networks:
- elastic
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es02,es03
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
volumes:
- es01-data:/usr/share/elasticsearch/data
ports:
- 9200:9200
es02:
image: local/elastic
build:
context: ./backend/elastic
container_name: es02
ulimits:
memlock:
soft: -1
hard: -1
networks:
- elastic
environment:
- node.name=es02
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es01,es03
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
volumes:
- es02-data:/usr/share/elasticsearch/data
es03:
image: local/elastic
build:
context: ./backend/elastic
container_name: es03
ulimits:
memlock:
soft: -1
hard: -1
networks:
- elastic
environment:
- node.name=es03
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es01,es02
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
volumes:
- es03-data:/usr/share/elasticsearch/data
volumes:
es01-data:
driver: local
driver_opts:
type: none
device: /volume/elastic/data01
o: bind
es02-data:
driver: local
driver_opts:
type: none
device: /volume/elastic/data02
o: bind
es03-data:
driver: local
driver_opts:
type: none
device: /volume/elastic/data03
o: bind