-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (65 loc) · 2.01 KB
/
docker-compose.yml
File metadata and controls
71 lines (65 loc) · 2.01 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
services:
opensearch_test_10_0:
container_name: opensearch_test_10_0
image: opensearchproject/opensearch:1
ports:
- "9210:9200"
- "9610:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
opensearch_test_10_1:
container_name: opensearch_test_10_1
image: opensearchproject/opensearch:1
ports:
- "9211:9200"
- "9611:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
opensearch_test_20_0:
container_name: opensearch_test_20_0
image: opensearchproject/opensearch:2
ports:
- "9220:9200"
- "9620:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
- OPENSEARCH_INITIAL_ADMIN_PASSWORD="XJ67NCmLj4yMPPz0wthVUvVGV0cQiq"
opensearch_test_20_1:
container_name: opensearch_test_20_1
image: opensearchproject/opensearch:2
ports:
- "9221:9200"
- "9621:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
- OPENSEARCH_INITIAL_ADMIN_PASSWORD="XJ67NCmLj4yMPPz0wthVUvVGV0cQiq"
opensearch_test_30_0:
container_name: opensearch_test_30_0
image: opensearchproject/opensearch:3
ports:
- "9230:9200"
- "9630:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
- OPENSEARCH_INITIAL_ADMIN_PASSWORD="XJ67NCmLj4yMPPz0wthVUvVGV0cQiq"
opensearch_test_30_1:
container_name: opensearch_test_30_1
image: opensearchproject/opensearch:3
ports:
- "9231:9200"
- "9631:9600"
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
- OPENSEARCH_INITIAL_ADMIN_PASSWORD="XJ67NCmLj4yMPPz0wthVUvVGV0cQiq"