-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
79 lines (73 loc) · 1.87 KB
/
docker-compose.yaml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
version: "3"
services:
service-a:
container_name: service-a
build:
context: .
dockerfile: Dockerfile.ServiceA
image: service-a:latest
environment:
- KAFKA_SERVER_URL=kafka:9092
- HTTP_SERVER_PORT=8080
- KAFKA_TOPIC=testcontainers
ports:
- 8080:8080
networks:
- apache
depends_on:
- kafka
service-b:
container_name: service-b
build:
context: .
dockerfile: Dockerfile.ServiceB
image: service-b:latest
environment:
- KAFKA_SERVER_URL=kafka:9092
- KAFKA_TOPIC=testcontainers
- DATABASE_URL=host=database port=5432 user=admin password=safe_pwd dbname=testcontainers sslmode=disable
networks:
- apache
depends_on:
- kafka
- database
database:
container_name: database
image: postgres:15.2-alpine
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=safe_pwd
- POSTGRES_DB=testcontainers
volumes:
- ./connections/database/script/bootstrap.sql:/docker-entrypoint-initdb.d/bootstrap.sql
ports:
- 5432:5432
networks:
- apache
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
networks:
- apache
kafka:
container_name: kafka
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- "9092:9092"
- "9094:9094"
environment:
KAFKA_BROKER_ID: 1
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL
KAFKA_LISTENERS: INTERNAL://:9092,OUTSIDE://:9094
KAFKA_ADVERTISED_LISTENERS: INTERNAL://kafka:9092,OUTSIDE://host.docker.internal:9094
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL:PLAINTEXT,OUTSIDE:PLAINTEXT
networks:
- apache
networks:
apache:
driver: bridge