Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » AWS/Azure/OpenShift » Create Azure Container instance to deploy your image to Azure using Azure CLI
  • zoom feature
    How to install Zoom video conference software on Linux System Linux
  • Featured Image
    Remote WMI Connection: How to enable or disable WMI Traffic Using Firewall UI Windows
  • Featured image   Black screen issue
    How to Fix Black Screen Issues on Windows 11/10 Windows
  • Create an S3 Bucket
    Backup Repository: How to Create Amazon S3 buckets AWS/Azure/OpenShift
  • Bulk operations in Azure AD
    Perform Bulk User Operations in Azure AD AWS/Azure/OpenShift
  • windows store icon
    Application User Model ID: How to find the AUMID of an installed UWP App Windows
  • TeamPass Password manager
    Install and configure TeamPass Password Manager Password Manager
  • images 1
    How to Monitor Windows Hosts via Nagios Network | Monitoring

Create Azure Container instance to deploy your image to Azure using Azure CLI

Posted on 27/09/202216/12/2023 Imoh Etuk By Imoh Etuk No Comments on Create Azure Container instance to deploy your image to Azure using Azure CLI
Deploy-to-ACI
Deploy Docker Image to ACI

Azure Container Instance is one of the popular container solutions in the industry. When it comes to containers, Docker remains the most widely adopted open-source container in the container industry. In addition to Artifactory Docker Registry, LXC (Linux), Hyper-V, and Windows Containers, other container solutions are also available. In this article, we shall discuss how to create Azure Container instance to deploy your image to Azure using Azure CLI. Please see how to build your first CI/CD Pipeline in Azure DevOps using ASP.Net Core Application and how to use container insights to get the full benefits of Azure Monitor for Azure Kubernetes workload

Each of these container solutions has its own set of approaches and use cases. This article discusses how to set up an Azure Container Instance and deploy a Docker image.

ACI, or Azure Container Instance, allows you to run your Docker image on Azure. To deploy a Docker image to Azure, first publish it to a container registry, then connect the container instance to the registry and deploy the image.

Docker images are published to a publicly accessible repository known as Docker Hub, a free Docker registry that allows you to create one private repository and multiple public repositories. To begin, sign up for a Docker Hub account.

Docker-Hub
Docker Hub

You can review some related articles on Azure: How to Upload Batch Files to Azure Storage Account Using Azure CLI, and Serverless in Azure: How to deploy a function app from Visual Studio to Azure Platform.

Create Azure Container Instance

Here we are going to see how to create Azure Container Instance using Azure CLI and pull an image from Docker Hub. Do the following:

  1. Azure CLI is installed on your PC.
  2. Active Azure Subscription, if you don’t have one already sign up on Azure.

Create a Resource Group

Next, create a resource group. A resource group is a logical folder that holds all your resources together. We are going to create one by running the below CLI command:

az group create --name <YourResourceGroupName> --location <ChoosePreferredLocation>
Create-Resource-Group
Creating a Resource Group

Create an Azure Container Instance (ACI)

We have created the resource group, it’s time to create the Container using the az container create command by providing the name of the resource group we have just created. Here we will use the public image  provided by Microsoft named mcr.microsoft.com/azuredocs/aci-helloworld. This image packages a small web app written in Node.js that serves a static HTML page.

To create the container run:

az container create --resource-group My-Test-RG  --name my-con-aci --image mcr.microsoft.com/azuredocs/aci-helloworld --dns-name-label aci-con --ports 80
Deployed-the-container
Deploying the container

We have successfully deployed the image to Azure Container Instance. Let’s check the status by running the below command:

az container show --resource-group <YourResourceGroupName> --name <YourContainerName --query "{FQDN:ipAddress.fqdn,ProvisioningState:provisioningState}" --out table
Container-Status-Succeeded
Checking the container deployment status

As you can see from the screenshot, the fully qualified domain name for the container is aci-con.eastus.azurecontainer.io. The FQDN is derived from the DNS name that we specified. During the container deployment, you might receive a prompt indicating the availability of the DNS name.

Now, let’s browse to the URL using a web browser.

FQDN-of-the-Container
Azure Container Instance deployed successfully

Pull the container logs

When troubleshooting a container or the application it runs, or simply viewing its output, start by examining the container instance’s logs. Using the az container logs command, you can retrieve the container instance logs.

az container logs --resource-group <YourResourceName> --name <YourContainerName>
Pull-the-container-logs
Pulling Container logs

Next, let’s attach output streams. You can connect your local standard out and standard error streams to the container’s standard out and standard error streams. This allows you to view its current output or interact with it as if the commands were running directly in your terminal.

To connect your local console to the container’s output streams, use the az container attach command as shown below:

az container attach --resource-group <YourResourceGroupName> --name <YourContainerName>
Note: This will continue to run without stopping. To stop it, press Ctrl + C key combination on your PC.  
Attach-output-Stream
Attaching output streams

I hope you found this article useful on create Azure Container instance to deploy your image to Azure using Azure CLI. Please feel free to leave a comment below.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
AWS/Azure/OpenShift Tags:Azure, Azure CLI, docker hub, docker image

Post navigation

Previous Post: How to create a Shortcut That enables Standard Users to run Applications as Administrator
Next Post: Install Windows Server 2022 on VirtualBox

Related Posts

  • Amazon
    Import Virtual Machines to AWS as AMI AWS/Azure/OpenShift
  • s3
    How to Copy from a server to s3 and vice versa AWS/Azure/OpenShift
  • Screenshot 2024 02 09 at 7.34.18 PM
    How to create a Logic App for monitoring tweets AWS/Azure/OpenShift
  • Commvault Docker Images
    Pull and Push Commvault Images to Azure Container Registry AWS/Azure/OpenShift
  • cloudqueryfeature
    How to Manage Cloud Assets in AWS with CloudQuery AWS/Azure/OpenShift
  • mfa
    Microsoft Azure Multi-Factor Authentication (MFA) AWS/Azure/OpenShift

More Related Articles

Amazon Import Virtual Machines to AWS as AMI AWS/Azure/OpenShift
s3 How to Copy from a server to s3 and vice versa AWS/Azure/OpenShift
Screenshot 2024 02 09 at 7.34.18 PM How to create a Logic App for monitoring tweets AWS/Azure/OpenShift
Commvault Docker Images Pull and Push Commvault Images to Azure Container Registry AWS/Azure/OpenShift
cloudqueryfeature How to Manage Cloud Assets in AWS with CloudQuery AWS/Azure/OpenShift
mfa Microsoft Azure Multi-Factor Authentication (MFA) AWS/Azure/OpenShift

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • zoom feature
    How to install Zoom video conference software on Linux System Linux
  • Featured Image
    Remote WMI Connection: How to enable or disable WMI Traffic Using Firewall UI Windows
  • Featured image   Black screen issue
    How to Fix Black Screen Issues on Windows 11/10 Windows
  • Create an S3 Bucket
    Backup Repository: How to Create Amazon S3 buckets AWS/Azure/OpenShift
  • Bulk operations in Azure AD
    Perform Bulk User Operations in Azure AD AWS/Azure/OpenShift
  • windows store icon
    Application User Model ID: How to find the AUMID of an installed UWP App Windows
  • TeamPass Password manager
    Install and configure TeamPass Password Manager Password Manager
  • images 1
    How to Monitor Windows Hosts via Nagios Network | Monitoring

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,836 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.