Skip to content

Commit fd86e0b

Browse files
committed
feat: add e2e tests
Signed-off-by: Bence Csati <bence.csati@axoflow.com>
1 parent 7805ffa commit fd86e0b

File tree

2 files changed

+585
-0
lines changed

2 files changed

+585
-0
lines changed

test/es-compat/docker-compose.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
services:
2+
elasticsearch7:
3+
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.16
4+
container_name: es7
5+
environment:
6+
- discovery.type=single-node
7+
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
8+
- xpack.security.enabled=false
9+
ports:
10+
- "9207:9200"
11+
networks:
12+
- elastic
13+
14+
elasticsearch8:
15+
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
16+
container_name: es8
17+
environment:
18+
- discovery.type=single-node
19+
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
20+
- xpack.security.enabled=false
21+
ports:
22+
- "9208:9200"
23+
networks:
24+
- elastic
25+
26+
elasticsearch9:
27+
image: docker.elastic.co/elasticsearch/elasticsearch:9.1.5
28+
container_name: es9
29+
environment:
30+
- discovery.type=single-node
31+
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
32+
- xpack.security.enabled=false
33+
ports:
34+
- "9209:9200"
35+
networks:
36+
- elastic
37+
38+
networks:
39+
elastic:
40+
driver: bridge

0 commit comments

Comments
 (0)