diff --git a/docs/fundamentals/dashboard/configuration.md b/docs/fundamentals/dashboard/configuration.md index b1804026ba..e47808c478 100644 --- a/docs/fundamentals/dashboard/configuration.md +++ b/docs/fundamentals/dashboard/configuration.md @@ -24,7 +24,7 @@ docker run --rm -it -p 18888:18888 -p 4317:18889 -d --name aspire-dashboard \ -e DASHBOARD__TELEMETRYLIMITS__MAXLOGCOUNT='1000' \ -e DASHBOARD__TELEMETRYLIMITS__MAXTRACECOUNT='1000' \ -e DASHBOARD__TELEMETRYLIMITS__MAXMETRICSCOUNT='1000' \ - mcr.microsoft.com/dotnet/nightly/aspire-dashboard:8.0.0 + mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0 ``` Alternatively, these same values could be configured using a JSON configuration file that is specified using `DOTNET_DASHBOARD_CONFIG_FILE_PATH`: diff --git a/docs/fundamentals/dashboard/overview.md b/docs/fundamentals/dashboard/overview.md index c2bc7d395b..403d94010c 100644 --- a/docs/fundamentals/dashboard/overview.md +++ b/docs/fundamentals/dashboard/overview.md @@ -23,12 +23,12 @@ The .NET Aspire dashboard is also shipped as a Docker image and can be used stan ```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 publishes exposing two ports: - Maps 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/). - Maps 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. diff --git a/docs/fundamentals/dashboard/security-considerations.md b/docs/fundamentals/dashboard/security-considerations.md index 6020d37371..b25a665839 100644 --- a/docs/fundamentals/dashboard/security-considerations.md +++ b/docs/fundamentals/dashboard/security-considerations.md @@ -55,7 +55,7 @@ API key authentication can be enabled on the telemetry endpoint with some additi docker run --rm -it -p 18888:18888 -p 4317:18889 -d --name aspire-dashboard \ -e DASHBOARD__OTLP__AUTHMODE='ApiKey' \ -e DASHBOARD__OTLP__PRIMARYAPIKEY='{MY_APIKEY}' \ - mcr.microsoft.com/dotnet/nightly/aspire-dashboard:8.0.0 + mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0 ``` The preceding Docker command: