You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
618 B

  1. ---
  2. zookeeper:
  3. image: confluentinc/cp-zookeeper
  4. ports:
  5. - "2181:2181"
  6. environment:
  7. ZOOKEEPER_CLIENT_PORT: 2181
  8. ZOOKEEPER_TICK_TIME: 2000
  9. kafka:
  10. image: confluentinc/cp-kafka
  11. links:
  12. - zookeeper
  13. ports:
  14. - "9092:9092"
  15. environment:
  16. KAFKA_BROKER_ID: 1
  17. KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
  18. KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT://localhost:9092'
  19. KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
  20. KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
  21. KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
  22. KAFKA_DEFAULT_REPLICATION_FACTOR: 1
  23. KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1