-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (64 loc) · 2.18 KB
/
docker-compose.yml
File metadata and controls
66 lines (64 loc) · 2.18 KB
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
64
65
66
# This configuration is intended for staging/demo purpose
version: "3.8"
services:
lorem-words-processing:
image: "know-how.download/iqkv/sample-lorem-mix-words-processing:latest"
container_name: lorem-demo-words-processing
restart: no
depends_on:
- kafka
ports:
- "8085:8085"
environment:
- KAFKA_BOOTSTRAP_SERVERS=lorem-demo-kafka:9092
lorem-reports-history:
image: "know-how.download/iqkv/sample-lorem-mix-reports-history:latest"
container_name: lorem-demo-reports-history
restart: no
depends_on:
- postgres
- kafka
ports:
- "8086:8086"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=lorem_db
- KAFKA_BOOTSTRAP_SERVERS=lorem-demo-kafka:9092
- DATASOURCE_URL=jdbc:postgresql://lorem-demo-postgres:5432/lorem_db
postgres:
image: "postgres:16.6"
container_name: lorem-demo-postgres
restart: no
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=lorem_db
zookeeper:
image: confluentinc/cp-zookeeper:7.8.3
container_name: lorem-demo-zookeeper
restart: no
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_SERVER_ID: 1
ZOOKEEPER_SERVERS: zookeeper:2888:3888
kafka:
image: confluentinc/cp-kafka:7.8.3
container_name: lorem-demo-kafka
restart: no
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ADVERTISED_LISTENERS: INTERNAL://kafka:19092,EXTERNAL://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL:PLAINTEXT,EXTERNAL:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
KAFKA_LOG4J_LOGGERS: "kafka.controller=INFO,kafka.producer.async.DefaultEventHandler=INFO,state.change.logger=INFO"
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_JMX_PORT: 9999
KAFKA_JMX_HOSTNAME: ${DOCKER_HOST_IP:-127.0.0.1}
KAFKA_AUTHORIZER_CLASS_NAME: kafka.security.authorizer.AclAuthorizer
KAFKA_ALLOW_EVERYONE_IF_NO_ACL_FOUND: "true"