Created
July 12, 2016 12:58
-
-
Save shavo007/ee26ebd73769822e305d1f7d670c7aaf to your computer and use it in GitHub Desktop.
Docker compose
This file contains hidden or 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
version: '2' | |
services: | |
elasticsearch: | |
build: docker/images/elasticsearch/ | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
curator: | |
build: docker/images/curator/ | |
environment: | |
- SHANE_PROP=hello | |
- ES_HOST=elasticsearch | |
volumes: | |
- /usr/share/curator | |
depends_on: | |
- elasticsearch | |
kibana: | |
build: docker/images/kibana/ | |
ports: | |
- "5601:5601" | |
depends_on: | |
- elasticsearch | |
logstash: | |
build: docker/images/logstash/ | |
command: logstash -f /etc/logstash/conf.d/logstash.conf | |
volumes: | |
- ./docker/images/logstash/config:/etc/logstash/conf.d | |
ports: | |
- "5000:5000" | |
depends_on: | |
- elasticsearch | |
app: | |
image: shanelee007/jest-elastic | |
ports: | |
- "8080:8080" | |
environment: | |
- ES_URL=elasticsearch | |
depends_on: | |
- elasticsearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment