-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (43 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
44 lines (43 loc) · 1.08 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
version: "3.8"
services:
db:
image: postgres:16
environment:
POSTGRES_DB: lms-be
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5433:5432"
volumes:
- lms-be:/var/lib/postgresql/data
restart: always
# loki:
# image: grafana/loki:latest
# ports:
# - 3100:3100
# volumes:
# - ./loki-config.yml:/etc/loki/loki-config.yaml
# promtail:
# image: grafana/promtail:latest
# volumes:
# - ./promtail-config.yml:/etc/promtail/promtail-config.yaml
jaeger:
image: jaegertracing/all-in-one:latest
environment:
COLLECTOR_ZIPKIN_HOST_PORT: 9411
expose:
- "16686"
ports:
- 16686:16686
- 4317:4317
- 4318:4318
command:
- "--memory.max-traces"
- "1000"
- "--collector.otlp.grpc.host-port"
- ":4317"
- "--collector.otlp.http.host-port"
- ":4318"
restart: always
volumes:
lms-be: