-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.dev.yaml
53 lines (49 loc) · 1.02 KB
/
docker-compose.dev.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
version: '3'
services:
postgres_db:
container_name: postgres_db
image: postgres:16
restart: always
environment:
POSTGRES_USER: "modron"
POSTGRES_PASSWORD: "modron"
POSTGRES_DB: "modron"
PGDATA: "/tmp/"
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U modron"]
interval: 1s
timeout: 2s
retries: 5
tmpfs:
- /tmp
jaeger:
image: jaegertracing/all-in-one:1.59
ports:
- "16686:16686"
environment:
COLLECTOR_OTLP_ENABLED: true
COLLECTOR_OTLP_GRPC_HOST_PORT: 0.0.0.0:4317
networks:
- otel
prometheus:
image: prom/prometheus:latest
command:
- --web.enable-remote-write-receiver
ports:
- "9090:9090"
networks:
- otel
otel-collector:
image: otel/opentelemetry-collector:0.108.0
command:
- --config=/etc/otel/config.yaml
ports:
- "4317:4317"
volumes:
- ./otel/config:/etc/otel
networks:
- otel
networks:
otel: {}