diff --git a/daprdocs/content/en/reference/cli/dapr-run.md b/daprdocs/content/en/reference/cli/dapr-run.md index 49d6713c6..47e478692 100644 --- a/daprdocs/content/en/reference/cli/dapr-run.md +++ b/daprdocs/content/en/reference/cli/dapr-run.md @@ -38,6 +38,7 @@ dapr run [flags] [command] | `--log-level` | | `info` | The log verbosity. Valid values are: `debug`, `info`, `warn`, `error`, `fatal`, or `panic` | | `--placement-host-address` | `DAPR_PLACEMENT_HOST` | `localhost` | The address of the placement service. Format is either `` for default port (`6050` on Windows, `50005` on Linux/MacOS) or `:` for custom port | | `--profile-port` | | `7777` | The port for the profile server to listen on | +| `--unix-domain-socket`, `-u` | | `/tmp/dapr-APPID-[http|grpc].socket` | The socket path to listen on | | `--dapr-http-max-request-size` | | `4` | Max size of request body in MB.| ## Examples @@ -71,3 +72,9 @@ dapr run --app-id myapp -- python myapp.py ```bash dapr run --app-id myapp ``` + +### Run a .Net application with socket + +```bash +dapr run --app-id myapp --app-port 5000 --enable-unix-socket -- dotnet run +```