Skip to content

Commit ddebff0

Browse files
committed
fixes
1 parent 0fe9713 commit ddebff0

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

articles/virtual-network/deploy-container-networking-docker-linux.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ In this section, you add an IP configuration to the virtual network interface of
3232

3333
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
3434

35-
2. Select **vm-1**.
35+
1. Select **vm-1**.
3636

37-
3. In **Settings**, select **Networking**.
37+
1. In **Settings**, select **Networking**.
3838

39-
4. Select the name of the network interface next to **Network Interface:**. The network interface is named **vm-1** with a random number.
39+
1. Select the name of the network interface next to **Network Interface:**. The network interface is named **vm-1** with a random number.
4040

41-
5. In **Settings** of the network interface, select **IP configurations**.
41+
1. In **Settings** of the network interface, select **IP configurations**.
4242

43-
6. in **IP configurations**, select **ipconfig1** in **Name**.
43+
1. in **IP configurations**, select **ipconfig1** in **Name**.
4444

45-
7. In the **ipconfig1** settings, change the assignment of the private IP address from **Dynamic** to **Static**.
45+
1. In the **ipconfig1** settings, change the assignment of the private IP address from **Dynamic** to **Static**.
4646

47-
8. Select **Save**.
47+
1. Select **Save**.
4848

49-
9. Return to **IP configurations**.
49+
1. Return to **IP configurations**.
5050

51-
10. Select **+ Add**.
51+
1. Select **+ Add**.
5252

53-
11. Enter or select the following information for **Add IP configuration**:
53+
1. Enter or select the following information for **Add IP configuration**:
5454

5555
| Setting | Value |
5656
| ------- | ----- |
@@ -59,11 +59,11 @@ In this section, you add an IP configuration to the virtual network interface of
5959
| Allocation | Select **Static**. |
6060
| IP address | Enter **10.1.0.5**. |
6161

62-
12. Select **OK**.
62+
1. Select **OK**.
6363

64-
13. Verify **ipconfig-2** has been added as a secondary IP configuration.
64+
1. Verify **ipconfig-2** has been added as a secondary IP configuration.
6565

66-
Repeat steps 1 through 13 to add as many configurations as containers you wish to deploy on the container host.
66+
Repeat the previous steps to add as many configurations as containers you wish to deploy on the container host.
6767

6868
## Install Docker
6969

@@ -73,13 +73,13 @@ Sign-in to the virtual machine you created previously with the Azure Bastion hos
7373

7474
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
7575

76-
2. Select **vm-1**.
76+
1. Select **vm-1**.
7777

78-
3. In the **Overview** of **vm-1**, select **Connect** then **Bastion**.
78+
1. In the **Overview** of **vm-1**, select **Connect** then **Bastion**.
7979

80-
4. Enter the username and password you created when you deployed the virtual machine in the previous steps.
80+
1. Enter the username and password you created when you deployed the virtual machine in the previous steps.
8181

82-
5. Select **Connect**.
82+
1. Select **Connect**.
8383

8484
For install instructions for Docker on an Ubuntu container host, see [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/).
8585

@@ -95,27 +95,27 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
9595

9696
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
9797

98-
2. Select **vm-1**.
98+
1. Select **vm-1**.
9999

100-
3. In the **Overview** of **vm-1**, select **Connect** then **Bastion**.
100+
1. In the **Overview** of **vm-1**, select **Connect** then **Bastion**.
101101

102-
4. Enter the username and password you created when you deployed the virtual machine in the previous steps.
102+
1. Enter the username and password you created when you deployed the virtual machine in the previous steps.
103103

104-
5. Select **Connect**.
104+
1. Select **Connect**.
105105

106-
6. The application **jq** is required for the install script for the CNI plugin, use the following example to install the application:
106+
1. The application **jq** is required for the install script for the CNI plugin, use the following example to install the application:
107107

108108
```bash
109109
sudo apt-get update
110110
sudo apt-get install jq
111111
```
112-
7. Next, you clone the repository for the CNI plugin. Use the following example to clone the repository:
112+
1. Next, you clone the repository for the CNI plugin. Use the following example to clone the repository:
113113

114114
```bash
115115
git clone https://github.com/Azure/azure-container-networking.git
116116
```
117117

118-
8. Configure permissions and install the CNI plugin. The install script command requires a version number for the CNI plugin. At the time of the writing of this article, the newest version is **`v1.4.39`**. To obtain the latest version number of the plugin or previous versions, see [Releases](https://github.com/Azure/azure-container-networking/releases).
118+
1. Configure permissions and install the CNI plugin. The install script command requires a version number for the CNI plugin. At the time of the writing of this article, the newest version is **`v1.4.39`**. To obtain the latest version number of the plugin or previous versions, see [Releases](https://github.com/Azure/azure-container-networking/releases).
119119

120120
```bash
121121
cd ./azure-container-networking/scripts
@@ -124,19 +124,19 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
124124
chmod u+x docker-run.sh
125125
```
126126

127-
9. To start a container with the CNI plugin, you must use a special script that comes with the plugin to create and start the container. The following example creates an Alpine container with the CNI plugin script:
127+
1. To start a container with the CNI plugin, you must use a special script that comes with the plugin to create and start the container. The following example creates an Alpine container with the CNI plugin script:
128128

129129
```bash
130130
sudo ./docker-run.sh vnetdocker1 default alpine
131131
```
132132

133-
10. To verify that the container received the IP address you previously configured, connect to the container and view the IP:
133+
1. To verify that the container received the IP address you previously configured, connect to the container and view the IP:
134134

135135
```bash
136136
sudo docker exec -it vnetdocker1 /bin/sh
137137
```
138138

139-
11. Use the **`ifconfig`** command in the following example to verify the IP address was assigned to the container:
139+
1. Use the **`ifconfig`** command in the following example to verify the IP address was assigned to the container:
140140

141141
```bash
142142
ifconfig

0 commit comments

Comments
 (0)