-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
26 lines (26 loc) · 813 Bytes
/
docker-compose.yml
File metadata and controls
26 lines (26 loc) · 813 Bytes
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
version: '3'
services:
elasticsearch5:
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.3
ports:
- 9201:9200
environment:
- "xpack.security.enabled=false"
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
elasticsearch6:
image: docker.elastic.co/elasticsearch/elasticsearch:6.3.2
ports:
- 9202:9200
environment:
- "xpack.security.enabled=false"
- "cluster.routing.allocation.disk.threshold_enabled=false"
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
elasticsearch7:
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.2
ports:
- 9203:9200
environment:
- "xpack.security.enabled=false"
- "discovery.type=single-node"
- "cluster.routing.allocation.disk.threshold_enabled=false"
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"