-
-
-```bash
-docker run --rm -it -d \
- -p 18888:18888 \
- -p 4317:18889 \
- -p 4318:18890 \
- -e DASHBOARD__OTLP__CORS__ALLOWEDORIGINS=https://localhost:8080 \
- --name aspire-dashboard \
- mcr.microsoft.com/dotnet/aspire-dashboard:latest
-```
-
-
-
-
-```powershell
-docker run --rm -it -d `
- -p 18888:18888 `
- -p 4317:18889 `
- -p 4318:18890 `
- -e DASHBOARD__OTLP__CORS__ALLOWEDORIGINS=https://localhost:8080 `
- --name aspire-dashboard `
- mcr.microsoft.com/dotnet/aspire-dashboard:latest
-```
-
-
-
-
-The preceding command runs the dashboard container and configures `https://localhost:8080` as an allowed origin. That means a browser app that is accessed using `https://localhost:8080` has permission to send the dashboard telemetry.
-
-Multiple origins can be allowed with a comma separated value. Or all origins can be allowed with the `*` wildcard. For example, `DASHBOARD__OTLP__CORS__ALLOWEDORIGINS=*`.
-
-