23 lines
642 B
YAML
23 lines
642 B
YAML
version: '2'
|
|
|
|
# Runs a Confluent Schema Registry instance on 'http://localhost:8081'.
|
|
#
|
|
# Pre-requisites: The brokers are already running.
|
|
|
|
services:
|
|
schema-registry:
|
|
image: confluentinc/cp-schema-registry:7.0.1
|
|
hostname: schema-registry
|
|
container_name: schema-registry
|
|
depends_on:
|
|
- broker1
|
|
- broker2
|
|
- broker3
|
|
ports:
|
|
- "8081:8081"
|
|
environment:
|
|
SCHEMA_REGISTRY_HOST_NAME: schema-registry
|
|
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'broker1:29091,broker2:29092,broker3:29093'
|
|
SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8081
|
|
SCHEMA_REGISTRY_LOG4J_ROOT_LOGLEVEL: WARN
|