Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit ac726ef

Browse files
committed
update docs with correct cosmosdb emulator commands
1 parent 258972a commit ac726ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/DEVELOPMENT-GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ A small collection of pytests have been written to test functionality of the API
7979
poetry install --with test
8080
```
8181

82-
Some tests require the azurite emulator and cosmosdb emulator to be running locally (these are setup in the ci/cd automatically). Please start these services by running them in the background as docker containers
82+
Some tests require the [azurite emulator](https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azurite?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json&bc=%2Fazure%2Fstorage%2Fblobs%2Fbreadcrumb%2Ftoc.json&tabs=docker-hub%2Cblob-storage) and [cosmosdb emulator](https://learn.microsoft.com/en-us/azure/cosmos-db/how-to-develop-emulator?tabs=docker-linux%2Ccsharp&pivots=api-nosql) to be running locally (these are setup in the ci/cd automatically). Please start these services by running them in the background as docker containers.
8383

8484
```shell
85-
docker run -d -p 10000:10000 -p 10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite
86-
docker run -d -p 8081:8081 -p 1234:1234 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-preview
85+
docker run -d -p 10000:10000 -p 10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite:latest
86+
docker run -d -p 8081:8081 -p 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest
8787
```
8888

8989
To run the tests,

0 commit comments

Comments
 (0)