blob: dac921600b54ecfd04292d24b06ee1c754f88cc4 [file] [log] [blame]
---
# Copyright 2018 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version: '2'
services:
#
# Single-node zookeeper service
#
zookeeper:
image: "wurstmeister/zookeeper:latest"
ports:
- 2181:2181
environment:
SERVICE_2181_NAME: "zookeeper"
#
# Single-node kafka service
#
kafka:
# image: "wurstmeister/kafka:1.1.0"
image: "wurstmeister/kafka:2.11-2.0.1"
ports:
- 9092:9092
environment:
# KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://10.100.198.220:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://${DOCKER_HOST_IP}:9092
KAFKA_LISTENERS: PLAINTEXT://:9092
# KAFKA_ADVERTISED_HOST_NAME: 10.100.198.220
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
SERVICE_9092_NAME: "kafka"
volumes:
- /var/run/docker.sock:/var/run/docker.sock