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