File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
scenarios/azure-compute-docs/articles/container-instances Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ az container create \
98
98
--vnet $MY_VNET_NAME \
99
99
--vnet-address-prefix 10.0.0.0/16 \
100
100
--subnet $MY_SUBNET_NAME \
101
- --subnet-address-prefix 10.0.0.0/24
101
+ --subnet-address-prefix 10.0.0.0/24 \
102
102
--os-type Linux
103
103
```
104
104
@@ -287,7 +287,8 @@ Deploy the container group with the [az container create][az-container-create] c
287
287
288
288
` ` ` azurecli-interactive
289
289
az container create --resource-group $MY_RESOURCE_GROUP_NAME \
290
- --file container-instances-vnet.yaml --os-type Linux
290
+ --file container-instances-vnet.yaml \
291
+ --os-type Linux
291
292
` ` `
292
293
293
294
The following Bash command is for the automated deployment pathway.
@@ -360,7 +361,7 @@ az container create \
360
361
--command-line "wget 10.0.0.4" \
361
362
--restart-policy never \
362
363
--vnet $MY_VNET_NAME \
363
- --subnet $MY_SUBNET_NAME
364
+ --subnet $MY_SUBNET_NAME \
364
365
--os-type Linux
365
366
` ` `
366
367
You can’t perform that action at this time.
0 commit comments