Run your first Azure Container Instances (Azure)
This article has not been completed yet. However, it may already contain helpful Information and therefore it has been published at this stage.
GUI - Way:
PowerShell - Way:
az group create --name learn-deploy-aci-rg --location westeuropeaz container create --resource-group learn-deploy-aci-rg --name testacicontainer --image mcr.microsoft.com/azuredocs/aci-helloworld --ports 80  --dns-name-label testacicontainer --location westeuropeaz container show --resource-group learn-deploy-aci-rg --name testacicontainer --query "{FQDN:ipAddress.fqdn,ProvisioningState:provisioningState}" --output tableaz container delete -n testacicontainer -g learn-deploy-aci-rgGet logs
az container logs --resource-group learn-deploy-aci-rg --name testacicontainerGet container events
az container attach --resource-group learn-deploy-aci-rg --name testacicontainerExecute a command in your container
az container exec --resource-group learn-deploy-aci-rg --name testacicontainer --exec-command /bin/shSources:
Exercise - Run Azure Container Instances - Learn
Run Azure Container Instances.