-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
95 lines (91 loc) · 2.57 KB
/
docker-compose.yml
File metadata and controls
95 lines (91 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
services:
zookeeper:
image: confluentinc/cp-zookeeper:7.6.1
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
healthcheck:
test: [ "CMD", "echo", "ruok", "|", "nc", "localhost", "2181" ]
interval: 10s
timeout: 5s
retries: 5
kafka:
image: confluentinc/cp-kafka:7.6.1
depends_on:
zookeeper:
condition: service_healthy
ports:
- "9092:9092"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_HEAP_OPTS: -Xmx1024M -Xms1024M
healthcheck:
test: [ "CMD", "nc", "-z", "localhost", "9092" ]
interval: 10s
timeout: 5s
retries: 10
entrypoint: ["/bin/bash", "-c", "/etc/confluent/docker/run & /scripts/bootstrap-topics.sh"]
volumes:
- ./scripts:/scripts
- ./data:/data
# schema-registry:
# image: confluentinc/cp-schema-registry:7.6.1
# depends_on:
# - kafka
# ports:
# - "8081:8081"
# environment:
# SCHEMA_REGISTRY_HOST_NAME: schema-registry
# SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: PLAINTEXT://kafka:9092
## SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: zookeeper:2181
# SCHEMA_REGISTRY_LISTENERS: http://schema-registry:8081/
#
# kafdrop:
# image: obsidiandynamics/kafdrop
# depends_on:
# - kafka
# ports:
# - "9000:9000"
# environment:
# KAFKA_BROKERCONNECT: kafka:9092
# SCHEMAREGISTRY_CONNECT: http://schema-registry:8081
# JVM_OPTS: -Xms32M -Xmx64M
#
postgres:
image: "postgres:${POSTGRES_VERSION:-16}"
environment:
POSTGRES_DB: "${POSTGRES_DB:-spring-boot-playground}"
POSTGRES_USER: "${POSTGRES_USER:-postgres}"
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD:-password}"
ports:
- "${POSTGRES_EXPORT_PORT:-5432}:5432"
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
interval: 10s
timeout: 5s
retries: 5
volumes:
- "postgresData:/var/lib/postgresql/data"
app:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/dtkmn/spring-boot-playground:latest
depends_on:
postgres:
condition: service_healthy
kafka:
condition: service_healthy
# - schema-registry
ports:
- "8080:8080"
environment:
SPRING_PROFILES_ACTIVE: docker
KAFKA_BROKER: kafka:9092
# SCHEMA_REGISTRY_URL: http://schema-registry:8081
volumes:
postgresData: