Skip to content

Commit 9bdf441

Browse files
committed
Use non OSS version of elasticsearch.
1 parent fb51f37 commit 9bdf441

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

travis/run_es_docker.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#!/bin/sh
22
ES_VERSION="7.14.0"
33

4-
docker pull docker.elastic.co/elasticsearch/elasticsearch-oss:${ES_VERSION}
5-
docker network create esnet-oss;
4+
docker pull docker.elastic.co/elasticsearch/elasticsearch:${ES_VERSION}
5+
docker network create esnet;
66
docker run \
77
--rm \
88
--publish 9200:9200 \
99
--env "node.attr.testattr=test" \
1010
--env "path.repo=/tmp" \
1111
--env "repositories.url.allowed_urls=http://snapshot.*" \
1212
--env "discovery.type=single-node" \
13-
--network=esnet-oss \
14-
--name=elasticsearch-oss \
13+
--network=esnet \
14+
--name=elasticsearch \
1515
--detach \
16-
docker.elastic.co/elasticsearch/elasticsearch-oss:${ES_VERSION}
17-
docker run --network esnet-oss --rm appropriate/curl --max-time 120 --retry 120 --retry-delay 1 --retry-connrefused --show-error --silent http://elasticsearch-oss:9200
16+
docker.elastic.co/elasticsearch/elasticsearch${ES_VERSION}
17+
docker run --network esnet --rm appropriate/curl --max-time 120 --retry 120 --retry-delay 1 --retry-connrefused --show-error --silent http://elasticsearch:9200

0 commit comments

Comments
 (0)