Guest User

Untitled

a guest
May 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. version: '2'
  2. services:
  3. zookeeper:
  4. image: "confluentinc/cp-zookeeper:4.1.0"
  5. ports:
  6. - "2181:2181"
  7. expose:
  8. - "2181"
  9. environment:
  10. - ZOOKEEPER_CLIENT_PORT=2181
  11. kafka:
  12. image: "confluentinc/cp-kafka:4.1.0"
  13. hostname: kafka
  14. links:
  15. - zookeeper
  16. ports:
  17. - "9092:9092"
  18. expose:
  19. - "9092"
  20. environment:
  21. - KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
  22. - KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://zookeeper:9092
  23. - KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1
Add Comment
Please, Sign In to add comment