mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This change makes the elasticsearch service used in integration tests be installed and started in a docker container. Fixes #7097 Fixes #7234
6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ES_HOME=${WORKDIR}/elasticsearch
|
|
|
|
# Set "http.host" to make the service visible from outside the container.
|
|
${ES_HOME}/bin/elasticsearch -E http.host=0.0.0.0
|