fix tempo ports & tempo envs

This commit is contained in:
pashko 2025-05-15 13:37:59 +08:00
parent 6f19b628c8
commit 5f3b77b3b4

View File

@ -65,8 +65,9 @@ services:
- proxy - proxy
tempo: tempo:
image: grafana/tempo:2.3.0 image: ${TEMPO_IMAGE}
hostname: tempo container_name: ${TEMPO_CONTAINER_NAME}
hostname: ${TEMPO_CONTAINER_NAME}
user: "1000" user: "1000"
restart: always restart: always
volumes: volumes:
@ -74,9 +75,9 @@ services:
- ./data/tempo-storage:/tmp/tempo - ./data/tempo-storage:/tmp/tempo
command: command:
- '--config.file=etc/tempo.yaml' - '--config.file=etc/tempo.yaml'
ports: ports:
- "4317:4317" # otlp grpc. - "4317:4317" # otlp grpc.
- "3200:3200" # native port for Grafana data source - "3200:3200" # native port for Grafana data source
networks: networks:
- loki - loki
- proxy - proxy