This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (62 loc) · 3.04 KB
/
docker-compose.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: "2"
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest
hostname: zookeeper
container_name: zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
# KAFKA_OPTS: "-Djava.security.auth.login.config=/etc/kafka/server-jaas.conf -Dzookeeper.authProvider.1=org.apache.zookeeper.server.auth.SASLAuthenticationProvider"
volumes:
[]
# - ./testHelpers/kafka/server-jaas.conf:/etc/kafka/server-jaas.conf
kafka1:
image: confluentinc/cp-kafka:5.3.1
hostname: kafka1
container_name: kafka1
labels:
- "custom.project=kafkajs"
- "custom.service=kafka1"
depends_on:
- zookeeper
ports:
- "29092:29092"
- "9092:9092"
- "29093:29093"
- "9093:9093"
- "29094:29094"
- "9094:9094"
environment:
KAFKA_BROKER_ID: 0
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
# KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,SSL:SSL,SSL_HOST:SSL,SASL_SSL:SASL_SSL,SASL_SSL_HOST:SASL_SSL
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
# KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka1:29092,PLAINTEXT_HOST://localhost:9092,SSL://kafka1:29093,SSL_HOST://localhost:9093,SASL_SSL://kafka1:29094,SASL_SSL_HOST://localhost:9094
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka1:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false"
KAFKA_DELETE_TOPIC_ENABLE: "true"
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
# KAFKA_CREATE_TOPICS: "topic-test:1:1"
# KAFKA_SSL_KEYSTORE_FILENAME: "kafka.server.keystore.jks"
# KAFKA_SSL_KEYSTORE_CREDENTIALS: "keystore_creds"
# KAFKA_SSL_KEY_CREDENTIALS: "sslkey_creds"
# KAFKA_SSL_TRUSTSTORE_FILENAME: "kafka.server.truststore.jks"
# KAFKA_SSL_TRUSTSTORE_CREDENTIALS: "truststore_creds"
# KAFKA_SASL_MECHANISM_INTER_BROKER_PROTOCOL: "PLAIN"
# KAFKA_SASL_ENABLED_MECHANISMS: "PLAIN,SCRAM-SHA-256,SCRAM-SHA-512"
# KAFKA_OPTS: "-Djava.security.auth.login.config=/opt/kafka/config/server-jaas.conf"
# suppress verbosity
# https://github.com/confluentinc/cp-docker-images/blob/master/debian/kafka/include/etc/confluent/docker/log4j.properties.template
KAFKA_LOG4J_LOGGERS: "kafka.controller=INFO,kafka.producer.async.DefaultEventHandler=INFO,state.change.logger=INFO"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# - ./testHelpers/certs/kafka.server.keystore.jks:/etc/kafka/secrets/kafka.server.keystore.jks
# - ./testHelpers/certs/kafka.server.truststore.jks:/etc/kafka/secrets/kafka.server.truststore.jks
# - ./testHelpers/certs/keystore_creds:/etc/kafka/secrets/keystore_creds
# - ./testHelpers/certs/sslkey_creds:/etc/kafka/secrets/sslkey_creds
# - ./testHelpers/certs/truststore_creds:/etc/kafka/secrets/truststore_creds
#- ./testHelpers/kafka/server-jaas.conf:/opt/kafka/config/server-jaas.conf