Skip to content

Commit fe9cc01

Browse files
Merge pull request #299563 from hhunter-ms/hh-429559
[DTS] Update emulator commands to use `latest` instead of version number
2 parents 8a4ba1a + 8044775 commit fe9cc01

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
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
@@ -51,19 +51,19 @@ Learn more about Durable Task Scheduler [features](./durable-task-scheduler.md#f
5151
1. Pull the docker image containing the emulator.
5252
5353
```bash
54-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.6
54+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
5555
```
5656

5757
1. Run the emulator.
5858

5959
```bash
60-
docker run -itP mcr.microsoft.com/dts/dts-emulator:v0.0.6
60+
docker run -itP mcr.microsoft.com/dts/dts-emulator:latest
6161
```
6262

6363
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:
6464

6565
```bash
66-
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:v0.0.6
66+
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:latest
6767
```
6868

6969
## 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
@@ -122,13 +122,13 @@ Add connection information for local development:
122122
1. Pull the docker image containing the emulator.
123123

124124
```bash
125-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.6
125+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
126126
```
127127

128128
1. Run the emulator.
129129

130130
```bash
131-
docker run -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:v0.0.6
131+
docker run -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:latest
132132
```
133133

134134
The following output indicates the emulator started successfully.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ The application code looks for a deployed scheduler and task hub resource. If no
8080
1. Pull the Docker image for the emulator.
8181

8282
```bash
83-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.6
83+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
8484
```
8585

8686
1. Run the emulator. The container may take a few seconds to be ready.
8787

8888
```bash
89-
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:v0.0.6
89+
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:latest
9090
```
9191

9292
Since the example code automatically uses the default emulator settings, you don't need to set any environment variables. The default emulator settings for this quickstart are:
@@ -107,13 +107,13 @@ Since the example code automatically uses the default emulator settings, you don
107107
1. Pull the Docker image for the emulator.
108108
109109
```bash
110-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.6
110+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
111111
```
112112
113113
1. Run the emulator. The container may take a few seconds to be ready.
114114
115115
```bash
116-
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:v0.0.6
116+
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:latest
117117
```
118118
119119
Since the example code automatically uses the default emulator settings, you don't need to set any environment variables. The default emulator settings for this quickstart are:
@@ -133,13 +133,13 @@ Since the example code automatically uses the default emulator settings, you don
133133
1. Pull the Docker image for the emulator.
134134

135135
```bash
136-
docker pull mcr.microsoft.com/dts/dts-emulator:v0.0.6
136+
docker pull mcr.microsoft.com/dts/dts-emulator:latest
137137
```
138138

139139
1. Run the emulator. The container may take a few seconds to be ready.
140140

141141
```bash
142-
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:v0.0.6
142+
docker run --name dtsemulator -d -p 8080:8080 -p 8082:8082 mcr.microsoft.com/dts/dts-emulator:latest
143143
```
144144

145145
Since the example code automatically uses the default emulator settings, you don't need to set any environment variables. The default emulator settings for this quickstart are:

0 commit comments

Comments
 (0)