kafka-ui/docker-compose.md
Roman Zabaluev 289791ad85
Update docker-compose.md
indicate that we have a lot of files for more complex setups
2021-11-01 20:32:05 +03:00

1.1 KiB

Quick Start with docker-compose

Environment variables documentation - see usage.
We have plenty of example files with more complex configurations. Please check them out in docker directory.

  • Add a new service in docker-compose.yml
version: '2'
services:
  kafka-ui:
    image: provectuslabs/kafka-ui
    container_name: kafka-ui
    ports:
      - "8080:8080"
    restart: always
    environment:
      - KAFKA_CLUSTERS_0_NAME=local
      - KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
      - KAFKA_CLUSTERS_0_ZOOKEEPER=localhost:2181
  • If you prefer UI for Apache Kafka in read only mode
version: '2'
services:
  kafka-ui:
    image: provectuslabs/kafka-ui
    container_name: kafka-ui
    ports:
      - "8080:8080"
    restart: always
    environment:
      - KAFKA_CLUSTERS_0_NAME=local
      - KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
      - KAFKA_CLUSTERS_0_ZOOKEEPER=localhost:2181
      - KAFKA_CLUSTERS_0_READONLY=true
  • Start UI for Apache Kafka process
docker-compose up -d kafka-ui