Skip to content

Instantly share code, notes, and snippets.

@lwoodson
Created November 9, 2015 11:15
Show Gist options
  • Select an option

  • Save lwoodson/cbf4d6364f1b02c7a55f to your computer and use it in GitHub Desktop.

Select an option

Save lwoodson/cbf4d6364f1b02c7a55f to your computer and use it in GitHub Desktop.
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