Get started quickly with Azure container services. These quickstart guides provide step-by-step instructions to deploy and manage your containerized applications on Azure.
Learn how to deploy a single containerized application to Azure Container Instances (ACI) using the Azure Command-Line Interface (CLI). This is the fastest way to run a container on Azure without managing underlying infrastructure.
Example:
az container create --resource-group myResourceGroup --name mycontainer --image mcr.microsoft.com/azuredocs/aci-helloworld --dns-name-label myuniqueaci --ports 80
Start Quickstart
Discover how to set up a managed Kubernetes cluster in Azure using AKS. This guide covers the initial cluster creation and basic interaction.
kubectl.Example:
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 1 --enable-addons monitoring --generate-ssh-keys
Start Quickstart
Use Azure Container Apps to easily deploy and scale your containerized web applications. This quickstart focuses on a simple web app deployment.
Example using a Docker Hub image:
az containerapp create --resource-group myResourceGroup --name my-container-app --image mcr.microsoft.com/azuredocs/appservice-webapp --environment my-container-app-environment --query configuration.ingress.fqdn --output tsv
Start Quickstart
Learn to create an Azure Container Registry (ACR) instance and push/pull Docker images. This is essential for managing your container images securely.
Example:
az acr create --resource-group myResourceGroup --name myuniqueacrname --sku Basic --location eastus
Start Quickstart
Explore more advanced topics and tutorials in the Azure Tutorials section.