Skip to content

Commit 0fe9713

Browse files
committed
acrolinx
1 parent 113c437 commit 0fe9713

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: template-how-to
1212

1313
# Deploy container networking for a stand-alone Linux Docker host
1414

15-
The Azure CNI plugin enables per container/pod networking for stand-alone docker hosts and Kubernetes clusters. In this article, you'll learn how to install and configure the CNI plugin for a standalone Linux Docker host.
15+
The Azure CNI plugin enables per container/pod networking for stand-alone docker hosts and Kubernetes clusters. In this article, you learn how to install and configure the CNI plugin for a standalone Linux Docker host.
1616

1717
## Prerequisites
1818

@@ -26,9 +26,9 @@ It can take a few minutes for the Bastion host to deploy. You can continue with
2626

2727
## Add IP configuration
2828

29-
The Azure CNI plugin allocates IP addresses to containers based on a pool of IP addresses you create on the virtual network interface of the virtual machine. For every container on the host, an IP configuration must exist on the virtual network interface. If the number of containers on the server outnumber the IP configurations on the virtual network interface, the container will start but won't have an IP address.
29+
The Azure CNI plugin allocates IP addresses to containers based on a pool of IP addresses you create on the virtual network interface of the virtual machine. For every container on the host, an IP configuration must exist on the virtual network interface. If the number of containers on the server outnumber the IP configurations on the virtual network interface, the container starts but doesn't have an IP address.
3030

31-
In this section, you'll add an IP configuration to the virtual network interface of the virtual machine you created previously.
31+
In this section, you add an IP configuration to the virtual network interface of the virtual machine you created previously.
3232

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

@@ -89,7 +89,7 @@ After Docker is installed on your virtual machine, continue with the steps in th
8989

9090
## Install CNI plugin and create a test container
9191

92-
The Azure CNI plugin is maintained as a GitHub project and is available for download from the project's GitHub page. For this article, you'll use **`git`** within the virtual machine to clone the repository for the plugin and then install and configure the plugin.
92+
The Azure CNI plugin is maintained as a GitHub project and is available for download from the project's GitHub page. For this article, you use **`git`** within the virtual machine to clone the repository for the plugin and then install and configure the plugin.
9393

9494
For more information about the Azure CNI plugin, see [Microsoft Azure Container Networking](https://github.com/Azure/azure-container-networking).
9595

@@ -109,7 +109,7 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
109109
sudo apt-get update
110110
sudo apt-get install jq
111111
```
112-
7. Next, you'll clone the repository for the CNI plugin. Use the following example to clone the repository:
112+
7. 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
@@ -124,7 +124,7 @@ 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 will create an Alpine container with the CNI plugin script:
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:
128128

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

0 commit comments

Comments
 (0)