Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. zookeeper:
  2. image: confluent/zookeeper
  3. ports:
  4. - "2181:2181"
  5. kafka:
  6. image: confluent/kafka
  7. ports:
  8. - "9092:9092"
  9. links:
  10. - zookeeper:zookeeper
  11. registry:
  12. image: confluent/schema-registry
  13. ports:
  14. - "8081:8081"
  15. links:
  16. - kafka:kafka
  17. - zookeeper:zookeeper
  18. proxy:
  19. image: confluent/rest-proxy
  20. ports:
  21. - "8082:8082"
  22. links:
  23. - kafka:kafka
  24. - zookeeper:zookeeper
  25. trifecta:
  26. image: chatu/trifecta
  27. ports:
  28. - "8888:8888"
  29. links:
  30. - zookeeper:zookeeper
  31. environment:
  32. - ZOOKEEPERS=zookeeper
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement