Merge pull request #4133 from hhunter-ms/issue_4103

Update Docker command for MongoDB state component
This commit is contained in:
Hannah Hunter 2024-05-09 17:26:42 -04:00 committed by GitHub
commit 3a9770cca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ If you wish to use MongoDB as an actor store, add this metadata option to your C
You can run a single MongoDB instance locally using Docker:
```sh
docker run --name some-mongo -d mongo
docker run --name some-mongo -d -p 27017:27017 mongo
```
You can then interact with the server at `localhost:27017`. If you do not specify a `databaseName` value in your component definition, make sure to create a database named `daprStore`.