-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.tempo.yml
More file actions
38 lines (36 loc) · 898 Bytes
/
docker-compose.tempo.yml
File metadata and controls
38 lines (36 loc) · 898 Bytes
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
# Copied and modified from https://github.com/grafana/tempo/blob/main/example/docker-compose/alloy/docker-compose.yaml
networks:
tempo:
grafana:
services:
# Generate fake traces...
k6-tracing:
image: ghcr.io/grafana/xk6-client-tracing:latest
command:
- run
- /template.js
volumes:
- ./k6tracing.js:/template.js:ro
restart: always
depends_on:
- otel-collector
- tempo
networks:
tempo:
# To eventually offload to Tempo...
tempo:
image: grafana/tempo:latest
container_name: tempo
command: ["-config.file=/etc/tempo.yaml"]
volumes:
- ./tempo/tempo.yaml:/etc/tempo.yaml
- ../../tmp/tempo-data:/tmp/tempo
ports:
- "14268" # jaeger ingest
- "3200:3200" # tempo
- "4317" # otlp grpc
- "4318" # otlp http
- "9411" # zipkin
networks:
tempo:
grafana: