Sha256: 66ba9eaa99721d81c65b45b05c4e4a2441b6a25df42a4455e5d05fd9d6d93dcf

Contents?: true

Size: 873 Bytes

Versions: 1

Compression:

Stored size: 873 Bytes

Contents

version: '2'
services:
  zookeeper:
    image: wurstmeister/zookeeper
    ports:
      - '2181:2181'
  kafka:
    image: wurstmeister/kafka
    ports:
      - '9092:9092'
    environment:
      KAFKA_ADVERTISED_HOST_NAME: localhost
      KAFKA_ADVERTISED_PORT: 9092
      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
      KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
      KAFKA_CREATE_TOPICS:
        "integrations_0_02:2:1,\
         integrations_1_02:2:1,\
         integrations_2_02:2:1,\
         integrations_3_02:2:1,\
         integrations_4_02:2:1,\
         integrations_0_03:3:1,\
         integrations_1_03:3:1,\
         integrations_2_03:3:1,\
         integrations_0_10:10:1,\
         integrations_1_10:10:1,\
         benchmarks_0_01:1:1,\
         benchmarks_0_05:5:1,\
         benchmarks_0_10:10:1"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
karafka-2.0.0.beta3 docker-compose.yml