services:
tempo:
image: grafana/tempo:2.6.0
command: ["-config.file=/etc/tempo.yaml"]
volumes:
- ./tempo/tempo.yaml:/etc/tempo.yaml:ro
ports:
- "127.0.0.1:4317:4317" - "127.0.0.1:4318:4318" - "127.0.0.1:3200:3200" healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3200/ready"]
interval: 10s
timeout: 5s
retries: 5
pyroscope:
image: grafana/pyroscope:1.9.0
ports:
- "127.0.0.1:4040:4040"
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:4040/ready"]
interval: 10s
timeout: 5s
retries: 5
grafana:
image: grafana/grafana:13.0.1@sha256:0f86bada30d65ef9d0183b90c1e2682ac92d53d95da8bed322b984ea78a4a73a
environment:
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
ports:
- "127.0.0.1:3000:3000"
volumes:
- ./grafana/provisioning:/etc/grafana/provisioning:ro
- ./grafana/dashboards:/var/lib/grafana/dashboards:ro
depends_on:
tempo:
condition: service_healthy
pyroscope:
condition: service_healthy
networks:
default:
name: zeph-profiling