You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-network/deploy-container-networking-docker-windows.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,8 +164,17 @@ Repeat steps 1 through 13 to add as many configurations as containers you wish t
164
164
165
165
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.
166
166
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**.
167
170
171
+
3. In the **Overview** of **myVM**, select **Connect** then **Bastion**.
168
172
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.
169
178
170
179
## Install Docker
171
180
@@ -198,7 +207,7 @@ For more information about Windows containers see, [Get started: Prep Windows fo
198
207
199
208
After Docker is installed on your virtual machine, continue with the steps in this article.
200
209
201
-
## Install CNI plugin and create a test container
210
+
## Install CNI plugin and jq
202
211
203
212
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.
204
213
@@ -236,9 +245,18 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
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:
240
257
241
258
```powershell
259
+
cd .\azure-container-networking\azure-container-networking-master\scripts\
0 commit comments