Skip to content

Commit bd5b7b0

Browse files
committed
changed diceroll to helloworld in hands-on workshop
1 parent aeaccaa commit bd5b7b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/en/ninja-workshops/8-docker-k8s-otel/5-dockerize-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ helloworld 1.0 db19077b9445 20 seconds ago 217MB
162162
We can run our application using the Docker image as follows:
163163

164164
``` bash
165-
docker run --name diceroll \
165+
docker run --name helloworld \
166166
--detach \
167167
--expose 8080 \
168168
--network=host \

content/en/ninja-workshops/8-docker-k8s-otel/6-add-instrumentation-to-dockerfile.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ for each platform.
109109
Let's build a new Docker image that includes the OpenTelemetry .NET instrumentation:
110110
111111
``` bash
112-
docker build -t diceroll:1.1 .
112+
docker build -t helloworld:1.1 .
113113
```
114114
115115
> Note: we've used a different version (1.1) to distinguish the image from our earlier version.
@@ -135,11 +135,11 @@ docker build -t diceroll:1.1 .
135135
Let's run the new Docker image:
136136
137137
``` bash
138-
docker run --name diceroll \
138+
docker run --name helloworld \
139139
--detach \
140140
--expose 8080 \
141141
--network=host \
142-
diceroll:1.1
142+
helloworld:1.1
143143
```
144144
145145
We can access the application using:

0 commit comments

Comments
 (0)