-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use docker-compose to common test against elastic in travis (#76)
Waits for docker-compose to start elasticsearch in the background and executes common test suite
- Loading branch information
bryanhuntesl
authored
Oct 6, 2018
1 parent
c350f81
commit 8482766
Showing
4 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: '3' | ||
services: | ||
kibana: | ||
image: kibana:5.0 | ||
links: | ||
- elasticsearch | ||
ports: | ||
- 5601:5601 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: '3' | ||
services: | ||
elasticsearch: | ||
image: elasticsearch:5.3.2-alpine | ||
ports: | ||
- 9200:9200 | ||
volumes: | ||
- elasticsearch-data:/usr/share/elasticsearch/data | ||
environment: | ||
ES_JAVA_OPTS: "-Xms500m -Xmx500m" | ||
volumes: | ||
elasticsearch-data: {} | ||
|