HomeAdvisor / Kafdrop

Kafka UI and Monitoring Tool
Apache License 2.0
398 stars 163 forks source link

Accessing Schema Registry URL using Docker #59

Closed jmilagroso closed 3 years ago

jmilagroso commented 3 years ago

Any documentation about this?

jmilagroso commented 3 years ago

Can we add the SCHEMA_REGISTRY_URL as docker environment variable?

jmilagroso commented 3 years ago

Closing this.

Used https://hub.docker.com/r/afaltisk/kafdrop.

  ...
  kafdrop:
    image: afaltisk/kafdrop:latest
    restart: always
    depends_on:
      - zookeeper
      - confluent-schema-registry
    environment:
      ZK_HOSTS: zookeeper:2181
      SCHEMA_REGISTRY: http://confluent-schema-registry:8085
      MSG_FORMAT: DEFAULT
      LISTEN: 9000
    ports:
      - 9000:9000
  ...