Skip to content

Commit 6f90540

Browse files
authored
Merge pull request #4505 from guardian/an/local-docker-es-8
update elasticsearch docker container for local and tests to v8
2 parents baab791 + 271cde2 commit 6f90540

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

common-lib/src/test/scala/com/gu/mediaservice/testlib/ElasticSearchDockerBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trait ElasticSearchDockerBase extends BeforeAndAfterAll {
1616

1717
val esContainer: Option[ElasticsearchContainer] = if (useEsDocker) {
1818
{
19-
val container = new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:7.16.2")
19+
val container = new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.18.3")
2020
.withExposedPorts(9200)
2121
.withAccessToHost(true)
2222
.withEnv(Map(

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
elasticsearch:
3-
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.2
3+
image: docker.elastic.co/elasticsearch/elasticsearch:8.18.3
44
environment:
55
ES_JAVA_OPTS: "-Xms1024m -Xmx1024m"
66
volumes:

0 commit comments

Comments
 (0)