Running elasticsearch-net tests in a container

I'm trying to run the full set of integration tests from the

elasticsearch-net

(GitHub - elastic/elasticsearch-net: This strongly-typed, client library enables working with Elasticsearch. It is the official client maintained and supported by Elastic.) repository. I've got these entries in my docker-compose.yml:

elasticsearch6:
image: docker.elastic.co/elasticsearch/elasticsearch:6.4.2
ports:
- "127.0.0.1:9200:9200"
- "127.0.0.1:9300:9300"
environment:
- discovery.type=single-node

elasticsearch5:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.16
ports:
- "127.0.0.1:9205:9200"
- "127.0.0.1:9305:9300"
environment:
- discovery.type=single-node

but it's not clear how to run the tests in that repository against these containers. I've seen links to elasticsearch in the files within the .ci folder, but that's it. Has anyone tried this?

Thanks,
Bob

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.