Guest User

Untitled

a guest
Feb 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. version: '2'
  2. services:
  3. elasticsearch:
  4. build: elasticsearch
  5. ports:
  6. - '127.0.0.1:9200:9200'
  7. environment:
  8. - xpack.security.enabled=false
  9. kibana:
  10. image: docker.elastic.co/kibana/kibana:5.6.7
  11. ports:
  12. - '127.0.0.1:5601:5601'
  13. postgres:
  14. build: postgres
  15. environment:
  16. - POSTGRES_USER=marketing
  17. - POSTGRES_PASSWORD=marketing
  18. ports:
  19. - '127.0.0.1:5432:5432'
Add Comment
Please, Sign In to add comment