Skip to content

Commit 8a88b11

Browse files
committed
added more stuff
1 parent f55b260 commit 8a88b11

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

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

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,17 @@ Repeat steps 1 through 13 to add as many configurations as containers you wish t
164164

165165
To assign multiple IP addresses to a Windows virtual machine, the IP addressees must be added to the network interface in Windows. In this section, you'll sign-in to the virtual machine and configure the IP configurations you created in the previous section.
166166

167+
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
168+
169+
2. Select **myVM**.
167170

171+
3. In the **Overview** of **myVM**, select **Connect** then **Bastion**.
168172

173+
4. Enter the username and password you created when you deployed the virtual machine in the previous steps.
174+
175+
5. Select **Connect**.
176+
177+
6.
169178

170179
## Install Docker
171180

@@ -198,7 +207,7 @@ For more information about Windows containers see, [Get started: Prep Windows fo
198207

199208
After Docker is installed on your virtual machine, continue with the steps in this article.
200209

201-
## Install CNI plugin and create a test container
210+
## Install CNI plugin and jq
202211

203212
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 download the CNI plugin repository within the virtual machine and then install and configure the plugin.
204213

@@ -236,9 +245,18 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
236245
Copy-Item -Path "c:\k\azurecni\bin\10-azure.conflist" -Destination "c:\k\azurecni\netconf"
237246
```
238247
239-
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 Windows Server container with the CNI plugin script:
248+
### Install jq
249+
250+
The script that creates the containers with the Azure CNI plugin requires the application jq. For more information and download location, see [Download jq](https://stedolan.github.io/jq/download/).
251+
252+
The download is a self-contained executable for the application. Copy the executable **`jq-win64.exe`** to the **`scripts`** directory of the CNI plugin you downloaded in the previous steps.
253+
254+
## Create test container
255+
256+
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 will create an Windows Server container with the CNI plugin script:
240257
241258
```powershell
259+
cd .\azure-container-networking\azure-container-networking-master\scripts\
242260
.\docker-exec.ps1 vnetdocker1 default mcr.microsoft.com/windows/servercore/iis add
243261
```
244262

0 commit comments

Comments
 (0)