Advertisement
uopspop

Untitled

Aug 15th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. version: '2'
  2. services:
  3. elasticsearch:
  4. image: elasticsearch:2.2.1
  5. kibana:
  6. image: kibana:4.4.2
  7. ports:
  8. - "5601:5601"
  9. environment:
  10. - ELASTICSEARCH_URL=http://elasticsearch:9200
  11. depends_on:
  12. - elasticsearch
  13. logstash:
  14. image: logstash:2.2.2
  15. command: -e 'input { tcp { port => 5555} } output { elasticsearch { hosts => ["elasticsearch:9200"} } '
  16. ports:
  17. - "5555:5555"
  18. depends_on:
  19. - elasticsearch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement