Skip to content

Add missing image updates #942

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/fundamentals/dashboard/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
4 changes: 2 additions & 2 deletions docs/fundamentals/dashboard/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/fundamentals/dashboard/security-considerations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading