mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? <!-- Describe what has changed in this PR --> Open up Grafana Tempo's OTEL HTTP port, too. ## Why? <!-- Tell your future self why have you made these changes --> It's useful to send traces via curl. ## How did you test it? <!-- How have you verified this change? Tested locally? Added a unit test? Checked in staging env? --> ## Potential risks <!-- Assuming the worst case, what can be broken when deploying this change to production? --> ## Documentation <!-- Have you made sure this change doesn't falsify anything currently stated in `docs/`? If significant new behavior is added, have you described that in `docs/`? --> ## Is hotfix candidate? <!-- Is this PR a hotfix candidate or does it require a notification to be sent to the broader community? (Yes/No) -->
31 lines
618 B
YAML
31 lines
618 B
YAML
# Overrides for Mac/Darwin users.
|
|
services:
|
|
prometheus:
|
|
volumes:
|
|
- ./prometheus-darwin:/etc/prometheus
|
|
ports:
|
|
- "9090:9090"
|
|
networks:
|
|
- temporal-dev-network
|
|
grafana:
|
|
ports:
|
|
- "3000:3000"
|
|
networks:
|
|
- temporal-dev-network
|
|
tempo:
|
|
depends_on:
|
|
- grafana
|
|
ports:
|
|
- "3200:3200" # tempo
|
|
- "4317:4317" # otlp grpc
|
|
- "4318:4318" # otlp http
|
|
networks:
|
|
- temporal-dev-network
|
|
temporal-ui:
|
|
environment:
|
|
- TEMPORAL_ADDRESS=host.docker.internal:7233
|
|
ports:
|
|
- "8080:8080"
|
|
networks:
|
|
- temporal-dev-network
|