Skip to content

Commit b11a3a0

Browse files
committed
headstart
Signed-off-by: Hannah Hunter <[email protected]>
1 parent aefdefc commit b11a3a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/azure-functions/durable/durable-task-scheduler/develop-with-durable-task-scheduler.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ Learn more about durable task scheduler [features](./durable-task-scheduler.md#f
5353
1. Pull the docker image containing the emulator.
5454
5555
```bash
56-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.5
56+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
5757
```
5858

5959
1. Run the emulator.
6060

6161
```bash
62-
docker run -itP mcr.microsoft.com/dts/dts-emulator:v0.0.5
62+
docker run -itP mcr.microsoft.com/dts/dts-emulator:latest
6363
```
6464

6565
This command exposes a single task hub named `default`. If you need more than one task hub, you can set the environment variable `DTS_TASK_HUB_NAMES` on the container to a comma-delimited list of task hub names like in the following command:
6666

6767
```bash
68-
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:v0.0.5
68+
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:latest
6969
```
7070

7171
## Create a scheduler and task hub

articles/azure-functions/durable/durable-task-scheduler/quickstart-durable-task-scheduler.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ Get the durable task scheduler emulator port number in [the next step](#set-up-d
126126
1. Pull the docker image containing the emulator.
127127

128128
```bash
129-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.5
129+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
130130
```
131131

132132
1. Run the emulator.
133133

134134
```bash
135-
docker run -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:v0.0.5
135+
docker run -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:latest
136136
```
137137

138138
The following output indicates the emulator started successfully.

0 commit comments

Comments
 (0)