-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yaml
77 lines (71 loc) · 2.52 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
version: "2"
services:
# ----------------------------------------------------------------------------
# PostgreSQL
# ----------------------------------------------------------------------------
postgres:
image: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 123
POSTGRES_DB: stratus
ports:
- 5432:5432
volumes:
- "./static/schema/001-schema-external-rpc.sql:/docker-entrypoint-initdb.d/001-schema.sql"
postgres-persistent:
extends:
service: postgres
volumes:
- "postgres-data:/var/lib/postgresql/data"
profiles:
- manual
# ----------------------------------------------------------------------------
# Prometheus
# ----------------------------------------------------------------------------
prometheus:
image: prom/prometheus
volumes:
- ./static/prometheus.yaml:/etc/prometheus/prometheus.yaml
ports:
- 9090:9090
command:
- "--config.file=/etc/prometheus/prometheus.yaml"
- "--storage.tsdb.path=/prometheus"
- "--web.enable-lifecycle"
- "--log.level=debug"
# ----------------------------------------------------------------------------
# OpenTelemetry
# ----------------------------------------------------------------------------
jaeger:
image: jaegertracing/all-in-one:1.57
ports:
- 4317:4317
- 16686:16686
# ----------------------------------------------------------------------------
# Kafka
# ----------------------------------------------------------------------------
kafka:
image: confluentinc/cp-kafka:7.4.1
hostname: kafka
container_name: kafka
ports:
- 29092:29092
environment:
KAFKA_BROKER_ID: 1
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,CONTROLLER:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_PROCESS_ROLES: broker,controller
KAFKA_NODE_ID: 1
KAFKA_CONTROLLER_QUORUM_VOTERS: 1@kafka:29093
KAFKA_LISTENERS: PLAINTEXT://kafka:9092,CONTROLLER://kafka:29093,PLAINTEXT_HOST://0.0.0.0:29092
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_CONTROLLER_LISTENER_NAMES: CONTROLLER
KAFKA_LOG_DIRS: /tmp/kraft-combined-logs
CLUSTER_ID: MkU3OEVBNTcwNTJENDM2Qk
volumes:
postgres-data: