File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
content/en/ninja-workshops/8-docker-k8s-otel Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ helloworld 1.0 db19077b9445 20 seconds ago 217MB
162162We 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 \
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ for each platform.
109109Let' 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 .
135135Let' 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
145145We can access the application using:
You can’t perform that action at this time.
0 commit comments