diff --git a/docs/fundamentals/dashboard/standalone.md b/docs/fundamentals/dashboard/standalone.md index e5a167b2e2..a1bdc2ef09 100644 --- a/docs/fundamentals/dashboard/standalone.md +++ b/docs/fundamentals/dashboard/standalone.md @@ -18,11 +18,28 @@ The [.NET Aspire dashboard](overview.md) provides a great UI for viewing telemet The dashboard is started using the Docker command line. +## [Bash](#tab/bash) + ```bash -docker run --rm -it -p 18888:18888 -p 4317:18889 -d --name aspire-dashboard \ +docker run --rm -it \ + -p 18888:18888 \ + -p 4317:18889 -d \ + --name aspire-dashboard \ mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0 ``` +## [PowerShell](#tab/powershell) + +```powershell +docker run --rm -it ` + -p 18888:18888 ` + -p 4317:18889 -d ` + --name aspire-dashboard ` + mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0 +``` + +--- + The preceding Docker command: - Starts a container from the `mcr.microsoft.com/dotnet/aspire-dashboard:8.0.0` image.