File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
articles/container-instances Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ The sample application in this tutorial is a simple web app built in [Node.js][n
35
35
36
36
Use Git to clone the sample application's repository:
37
37
38
- ``` bash
38
+ ``` git
39
39
git clone https://github.com/Azure-Samples/aci-helloworld.git
40
40
```
41
41
@@ -62,8 +62,10 @@ docker build ./aci-helloworld -t aci-tutorial-app
62
62
63
63
Output from the [ docker build] [ docker-build ] command is similar to the following (truncated for readability):
64
64
65
- ``` console
66
- $ docker build ./aci-helloworld -t aci-tutorial-app
65
+ ``` bash
66
+ docker build ./aci-helloworld -t aci-tutorial-app
67
+ ```
68
+ ``` output
67
69
Sending build context to Docker daemon 119.3kB
68
70
Step 1/6 : FROM node:8.9.3-alpine
69
71
8.9.3-alpine: Pulling from library/node
@@ -90,8 +92,10 @@ docker images
90
92
91
93
Your newly built image should appear in the list:
92
94
93
- ``` console
94
- $ docker images
95
+ ``` bash
96
+ docker images
97
+ ```
98
+ ``` output
95
99
REPOSITORY TAG IMAGE ID CREATED SIZE
96
100
aci-tutorial-app latest 5c745774dfa9 39 seconds ago 68.1 MB
97
101
```
@@ -106,8 +110,9 @@ docker run -d -p 8080:80 aci-tutorial-app
106
110
107
111
Output from the ` docker run ` command displays the running container's ID if the command was successful:
108
112
109
- ``` console
110
- $ docker run -d -p 8080:80 aci-tutorial-app
113
+ ``` bash
114
+ docker run -d -p 8080:80 aci-tutorial-app
115
+ ` ` ` output
111
116
a2e3e4435db58ab0c664ce521854c2e1a1bda88c9cf2fcff46aedf48df86cccf
112
117
` ` `
113
118
You can’t perform that action at this time.
0 commit comments