mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 05:28:34 +00:00
bee892006a
Instead of allowing docker-compose to rebuild it. With this change we tag the image with a test label, and use that in the testing as this is simpler that dealing with a dynamically generated docker-compose file.
18 lines
421 B
YAML
18 lines
421 B
YAML
# Only used for testing the docker images
|
|
version: '3'
|
|
services:
|
|
elasticsearch-default:
|
|
image: elasticsearch:test
|
|
environment:
|
|
- cluster.name=elasticsearch-default
|
|
- discovery.type=single-node
|
|
ports:
|
|
- "9200"
|
|
elasticsearch-oss:
|
|
image: elasticsearch-oss:test
|
|
environment:
|
|
- cluster.name=elasticsearch-oss
|
|
- discovery.type=single-node
|
|
ports:
|
|
- "9200"
|