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 \
9898 --vnet $MY_VNET_NAME \
9999 --vnet-address-prefix 10.0.0.0/16 \
100100 --subnet $MY_SUBNET_NAME \
101- --subnet-address-prefix 10.0.0.0/24
101+ --subnet-address-prefix 10.0.0.0/24 \
102102 --os-type Linux
103103```
104104
@@ -287,7 +287,8 @@ Deploy the container group with the [az container create][az-container-create] c
287287
288288` ` ` azurecli-interactive
289289az 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
291292` ` `
292293
293294The following Bash command is for the automated deployment pathway.
@@ -360,7 +361,7 @@ az container create \
360361 --command-line "wget 10.0.0.4" \
361362 --restart-policy never \
362363 --vnet $MY_VNET_NAME \
363- --subnet $MY_SUBNET_NAME
364+ --subnet $MY_SUBNET_NAME \
364365 --os-type Linux
365366` ` `
366367
You can’t perform that action at this time.
0 commit comments