From fa75371a7b721a2c8e1c727032c93feda46520e0 Mon Sep 17 00:00:00 2001 From: Jose Perez Rodriguez Date: Tue, 21 May 2024 11:07:10 -0700 Subject: [PATCH] Use official aspire dashboard image --- docs/fundamentals/dashboard/standalone.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/fundamentals/dashboard/standalone.md b/docs/fundamentals/dashboard/standalone.md index d80ad80151..e5a167b2e2 100644 --- a/docs/fundamentals/dashboard/standalone.md +++ b/docs/fundamentals/dashboard/standalone.md @@ -20,12 +20,12 @@ The dashboard is started using the Docker command line. ```bash docker run --rm -it -p 18888:18888 -p 4317:18889 -d --name aspire-dashboard \ - mcr.microsoft.com/dotnet/nightly/aspire-dashboard:8.0.0 + mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0 ``` The preceding Docker command: -- Starts a container from the `mcr.microsoft.com/dotnet/nightly/aspire-dashboard:8.0.0` image. +- Starts a container from the `mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0` image. - The container expose two ports: - Mapping the dashboard's OTLP port `18889` to the host's port `4317`. Port `4317` receives OpenTelemetry data from apps. Apps send data using [OpenTelemetry Protocol (OTLP)](https://opentelemetry.io/docs/specs/otlp/). - Mapping the dashboard's port `18888` to the host's port `18888`. Port `18888` has the dashboard UI. Navigate to `http://localhost:18888` in the browser to view the dashboard.