-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathcompose.infrastructure.yml
More file actions
205 lines (196 loc) · 5.47 KB
/
compose.infrastructure.yml
File metadata and controls
205 lines (196 loc) · 5.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
services:
opentelemetry-collector:
image: otel/opentelemetry-collector-contrib:observability-workshop
build:
context: ./docker/otelcol
dockerfile: Dockerfile
args:
VERSION: 0.123.0
ports:
- "4317:4317"
- "4318:4318"
loki:
image: grafana/loki:observability-workshop
build:
context: ./docker/loki
dockerfile: Dockerfile
args:
VERSION: 3.4.2
ports:
- "3100:3100"
command:
- -config.file=/etc/loki/local-config.yaml
prometheus:
image: prom/prometheus:observability-workshop
build:
context: ./docker/prometheus
dockerfile: Dockerfile
args:
VERSION: v3.2.1
ports:
- "9090:9090"
command:
- --config.file=/etc/prometheus/prometheus.yml
- --web.enable-lifecycle
- --web.enable-remote-write-receiver
- --web.enable-otlp-receiver
- --enable-feature=exemplar-storage
- --log.level=debug
tempo:
image: grafana/tempo:observability-workshop
build:
context: ./docker/tempo
dockerfile: Dockerfile
args:
VERSION: 2.7.1
ports:
- "3200:3200" # tempo
- "9095:9095" # tempo grpc
- "9411:9411" # zipkin
command:
- -config.file=/etc/tempo/config.yaml
grafana:
image: grafana/grafana:observability-workshop
build:
context: ./docker/grafana
dockerfile: Dockerfile
args:
VERSION: 11.5.2
environment:
- GF_PATHS_PROVISIONING=/etc/grafana/provisioning
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- VSCODE_PROXY_URI=${VSCODE_PROXY_URI}
entrypoint:
- sh
- -xeuc
- |
mkdir -p /etc/grafana/provisioning/datasources
cat <<EOF > /etc/grafana/provisioning/datasources/ds.yaml
apiVersion: 1
datasources:
- name: Loki
type: loki
access: proxy
orgId: 1
url: http://loki:3100
basicAuth: false
isDefault: true
version: 1
editable: true
- name: Prometheus
type: prometheus
uid: prometheus
access: proxy
orgId: 1
url: http://prometheus:9090
basicAuth: false
isDefault: false
version: 1
editable: true
- name: Tempo
type: tempo
access: proxy
orgId: 1
url: http://tempo:3200
basicAuth: false
isDefault: false
version: 1
editable: true
apiVersion: 1
uid: tempo
jsonData:
httpMethod: GET
serviceMap:
datasourceUid: prometheus
- name: Pyroscope
type: grafana-pyroscope-datasource
url: http://pyroscope:4040
uid: pyroscope
jsonData:
keepCookies: [pyroscope_git_session]
EOF
/entrypoint.sh
ports:
- "3000:3000"
postgres-easypay:
image: postgres:16
ports:
- "5432:5432"
environment:
POSTGRES_DB: easypay
POSTGRES_USER: easypay
POSTGRES_PASSWORD: easypay
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U easypay" ]
interval: 5s
timeout: 1s
retries: 5
postgres-smartbank:
image: postgres:16
ports:
- "5433:5432"
environment:
POSTGRES_DB: smartbank
POSTGRES_USER: smartbank
POSTGRES_PASSWORD: smartbank
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U smartbank" ]
interval: 5s
timeout: 1s
retries: 5
postgres-fraudetect:
image: postgres:16
ports:
- "5434:5432"
environment:
POSTGRES_DB: fraudetect
POSTGRES_USER: fraudetect
POSTGRES_PASSWORD: fraudetect
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U fraudetect" ]
interval: 5s
timeout: 1s
retries: 5
postgres-merchantbo:
image: postgres:16
ports:
- "5435:5432"
environment:
POSTGRES_DB: merchantbo
POSTGRES_USER: merchantbo
POSTGRES_PASSWORD: merchantbo
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U merchantbo" ]
interval: 5s
timeout: 1s
retries: 5
kafka:
image: confluentinc/cp-kafka:7.6.1
hostname: kafka
container_name: kafka
ports:
- "19092:19092"
environment:
KAFKA_NODE_ID: 1
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: 'CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT'
KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:19092'
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_JMX_HOSTNAME: localhost
KAFKA_PROCESS_ROLES: 'broker,controller'
KAFKA_CONTROLLER_QUORUM_VOTERS: '1@kafka:29093'
KAFKA_LISTENERS: 'PLAINTEXT://kafka:9092,CONTROLLER://kafka:29093,PLAINTEXT_HOST://0.0.0.0:19092'
KAFKA_INTER_BROKER_LISTENER_NAME: 'PLAINTEXT'
KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER'
KAFKA_LOG_DIRS: '/tmp/kraft-combined-logs'
# Replace CLUSTER_ID with a unique base64 UUID using "bin/kafka-storage.sh random-uuid"
# See https://docs.confluent.io/kafka/operations-tools/kafka-tools.html#kafka-storage-sh
CLUSTER_ID: 'MkU3OEVBNTcwNTJENDM2Qk'
healthcheck:
test: [ "CMD-SHELL", "kafka-topics --bootstrap-server kafka:9092 --list" ]
interval: 30s
timeout: 10s
retries: 5