Created
November 9, 2015 11:15
-
-
Save lwoodson/cbf4d6364f1b02c7a55f to your computer and use it in GitHub Desktop.
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
| mysql: | |
| image: mysql:5.6 | |
| ports: | |
| - "3306:3306" | |
| environment: | |
| MYSQL_ALLOW_EMPTY_PASSWORD: true | |
| MYSQL_DATABASE: catalog_processor | |
| mongo: | |
| image: mongo:3.0.5 | |
| ports: | |
| - "27017:27017" | |
| redis: | |
| image: redis:3.0.3 | |
| ports: | |
| - "6379:6379" | |
| elasticsearch: | |
| # TODO this is listening on localhost and cannot be communicated with by logstash or kibana | |
| # should bind to 127.0.0.1 | |
| image: elasticsearch:2 | |
| ports: | |
| - "9200:9200" | |
| logstash: | |
| image: logstash:2 | |
| #command: /opt/logstash/bin/logstash -e 'input { stdin { } } output { stdout { } }' | |
| # TODO working logstash command | |
| command: "ping elasticsearch" | |
| links: | |
| - elasticsearch | |
| kibana: | |
| image: kibana:4.2 | |
| ports: | |
| - "5601:5601" | |
| links: | |
| - elasticsearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment