We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8dbba commit f184fb4Copy full SHA for f184fb4
scenarios/azure-compute-docs/articles/container-instances/container-instances-vnet.md
@@ -99,7 +99,9 @@ az container create \
99
--vnet-address-prefix 10.0.0.0/16 \
100
--subnet $MY_SUBNET_NAME \
101
--subnet-address-prefix 10.0.0.0/24 \
102
- --os-type Linux
+ --os-type Linux \
103
+ --cpu 1.0 \
104
+ --memory 1.5
105
```
106
107
A successful operation should produce output similar to the following JSON:
@@ -362,7 +364,9 @@ az container create \
362
364
--restart-policy never \
363
365
--vnet $MY_VNET_NAME \
366
367
368
369
370
371
372
After this second container deployment completes, pull its logs so you can see the output of the `wget` command it executed:
0 commit comments