# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 version: '3.8' services: # Tempo - Distributed tracing backend tempo: image: grafana/tempo:2.8.2 command: [ "-config.file=/etc/tempo.yaml" ] volumes: - ./tempo.yaml:/etc/tempo.yaml - tempo-data:/tmp/tempo ports: - "3200:3200" # Tempo HTTP - "4317:4317" # OTLP gRPC receiver (accessible from host) - "4318:4318" # OTLP HTTP receiver (accessible from host) # Grafana - Visualization and dashboards grafana: image: grafana/grafana:12.2.0 ports: - "3000:3000" environment: - GF_SECURITY_ADMIN_PASSWORD=admin - GF_FEATURE_TOGGLES_ENABLE=traceqlEditor volumes: - grafana-data:/var/lib/grafana - ./grafana/provisioning:/etc/grafana/provisioning depends_on: - tempo volumes: tempo-data: grafana-data: