forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
53 lines (48 loc) · 1.47 KB
/
docker-compose.yaml
File metadata and controls
53 lines (48 loc) · 1.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
version: "3"
services:
tempo:
image: grafana/tempo:latest
command: [ "-search.enabled=true", "-config.file=/etc/tempo.yaml" ]
volumes:
- ./tempo.yaml:/etc/tempo.yaml
- ./overrides.yaml:/etc/overrides.yaml
- ./tempo-data/:/tmp/tempo
ports:
- "3200:3200" # tempo
- "14268" # jaeger ingest
# Commenting out because Grafana UI has search enabled. Uncomment if you want to use the Jaeger UI!
#
# tempo-query:
# image: grafana/tempo-query:latest
# command: [ "--grpc-storage-plugin.configuration-file=/etc/tempo-query.yaml" ]
# volumes:
# - ./tempo-query.yaml:/etc/tempo-query.yaml
# ports:
# - "16686:16686" # jaeger-ui
# depends_on:
# - tempo
k6-tracing:
image: ghcr.io/grafana/xk6-client-tracing:v0.0.2
environment:
- ENDPOINT=tempo:4317
restart: always
depends_on:
- tempo
prometheus:
image: prom/prometheus:latest
command: [ "--config.file=/etc/prometheus.yaml" ]
volumes:
- ../shared/prometheus.yaml:/etc/prometheus.yaml
ports:
- "9090:9090"
grafana:
image: grafana/grafana:main # track main as search is under active development
volumes:
- ./grafana.ini:/etc/grafana/grafana.ini
- ./grafana-datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_DISABLE_LOGIN_FORM=true
ports:
- "3000:3000"