forked from ehsaniara/scs-kafka-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol-center-ui.yml
29 lines (26 loc) · 995 Bytes
/
control-center-ui.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: '2'
# Runs a Confluent Control Center UI instance on 'http://localhost:9021'.
#
# Pre-requisites: The brokers are already running.
services:
control-center:
image: confluentinc/cp-enterprise-control-center:7.0.3
hostname: control-center
container_name: control-center
depends_on:
- broker1
- broker2
- broker3
ports:
- "9021:9021"
environment:
CONTROL_CENTER_BOOTSTRAP_SERVERS: 'broker1:29091,broker2:29092,broker3:29093'
#CONTROL_CENTER_CONNECT_CONNECT-DEFAULT_CLUSTER: 'connect:8083'
#CONTROL_CENTER_KSQL_KSQLDB1_URL: "http://ksqldb-server:8088"
#CONTROL_CENTER_KSQL_KSQLDB1_ADVERTISED_URL: "http://localhost:8088"
CONTROL_CENTER_SCHEMA_REGISTRY_URL: "http://schema-registry:8081"
CONTROL_CENTER_REPLICATION_FACTOR: 1
CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1
CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1
CONFLUENT_METRICS_TOPIC_REPLICATION: 1
PORT: 9021