{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containerGroups_helloworld_name": { "defaultValue": "helloworld", "type": "String" } }, "variables": {}, "resources": [ { "type": "Microsoft.ContainerInstance/containerGroups", "apiVersion": "2021-10-01", "name": "[parameters('containerGroups_helloworld_name')]", "location": "southafricanorth", "properties": { "sku": "Standard", "containers": [ { "name": "[parameters('containerGroups_helloworld_name')]", "properties": { "image": "", "command": [ "tail", "-f", "/dev/null" ], "ports": [ { "protocol": "TCP", "port": 80 } ], "environmentVariables": [], "resources": { "requests": { "memoryInGB": 1.5, "cpu": 1 } }, "volumeMounts": [ { "name": "azurefile", "mountPath": "/specialfileshare" } ] } } ], "initContainers": [], "restartPolicy": "Always", "ipAddress": { "ports": [ { "protocol": "TCP", "port": 80 } ], "ip": "", "type": "Public" }, "osType": "Linux", "volumes": [ { "name": "azurefile", "azureFile": { "shareName": "", "storageAccountName": "" } } ] } } ] }