Επεξεργασία

Κοινή χρήση μέσω


Quickstart: Run a custom container in Azure

Azure App Service provides predefined application stacks on Windows, like ASP.NET or Node.js, that run on IIS. The preconfigured application stacks lock down the operating system and prevent low-level access. Custom Windows containers don't have these restrictions. They let developers fully customize the containers and give containerized applications full access to Windows functionality.

This quickstart shows how to deploy an ASP.NET app in a Windows image to Azure Container Registry from Visual Studio. You run the app in a custom container in Azure App Service.

Prerequisites

  • Install Docker for Windows

  • Switch Docker to run Windows containers

  • Install Visual Studio 2022 with the ASP.NET and web development and Azure development workloads. In Visual Studio 2022 Community, ensure that .NET Framework project and item templates component is selected with ASP.NET and web development workload. If you installed Visual Studio 2022 already:

    • Install the latest updates in Visual Studio by selecting Help > Check for Updates.
    • Add the workloads in Visual Studio by selecting Tools > Get Tools and Features.

Create an ASP.NET web app

Create an ASP.NET web app by following these steps:

  1. Open Visual Studio and then select Create a new project.

  2. In Create a new project, select ASP.NET Web Application (.NET Framework) for C#, then select Next.

    Screenshot of the Create a new project dialog box.

  3. In Configure your new project, under Project name, name the application myfirstazurewebapp. Under Framework, select .NET Framework 4.8 and then select Create.

    Screenshot of the Configure your web app project.

  4. You can deploy any type of ASP.NET web app to Azure. For this quickstart, choose the MVC template.

  5. Under Authentication, select None. Under Advanced, select Container support and uncheck Configure for HTTPS. Select Create.

    Screenshot of the Create ASP.NET Web Application dialog box.

  6. If the Dockerfile file isn't opened automatically, open it from the Solution Explorer.

  7. You need a supported parent image. Change the parent image by replacing the FROM line with the following code and save the file:

    FROM mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019
    
  8. From the Visual Studio menu, select Debug > Start Without Debugging to run the web app locally.

    Screenshot of the app running locally.

Publish to Azure Container Registry

  1. In Solution Explorer, right-click the myfirstazurewebapp project and select Publish.

  2. In Target, select Docker Container Registry, and then select Next.

    Screenshot of the Select Docker Container Registry screen.

  3. In Specific Target, select Azure Container Registry, and then select Next.

    Screenshot of the Publish from project overview page.

  4. In Publish, choose the correct subscription. In Container registries select Create new to create a new Azure Container Registry.

    Screenshot of the Create new Azure Container Registry screen.

  5. In Create new, select the correct subscription. Under Resource group, select New and type myResourceGroup for the name, and select OK. Under SKU, select Basic. Under Registry location, select a location of the registry then select Create.

    Screenshot of Azure Container Registry details.

  6. In Publish, under Container Registry, select the registry you created, and then select Finish.

    Screenshot of the Select existing Azure Container Registry screen.

    Wait for the deployment to complete. The Publish page now shows the repository name. Select the copy button to copy the Repository name for later.

    Screenshot that highlights the repository name.

Create a Windows custom container

  1. Sign in to the Azure portal.

  2. Choose Create a resource in the upper left-hand corner of the Azure portal.

  3. Under Popular services, select Create under Web App.

  4. In Create Web App, choose your subscription and a Resource Group. You can create a new resource group if needed.

  5. Provide an app name, such as win-container-demo. For Publish, select Container. For Operating System, select Windows.

    Screenshot of Create a Web App for Containers.

  6. Select Next: Database, then Next: Container to continue.

  7. For Image Source, choose Docker Hub and for Image and tag, enter the repository name you copied in Publish to Azure Container Registry.

    Screenshot of Configure your Web App for Containers.

    If you have a custom image elsewhere for your web application, such as in Azure Container Registry or in any other private repository, you can configure it here. Select Review + Create to continue.

  8. Verify all the details and then select Create.

    Screenshot of Create your Web App for Containers.

    Wait for Azure to create the required resources.

Browse to the custom container

When the operation finishes, the Azure portal displays a notification.

Screenshot of deployment succeeded.

  1. Select Go to resource.

  2. In the overview of this resource, follow the link next to Default domain.

A new browser page opens to the following page:

Screenshot of Windows custom container starting.

Wait a few minutes and try again, until you get the default ASP.NET home page:

Screenshot of Windows custom container running.

Congratulations! You're running your first custom Windows container in Azure App Service.

See container start-up logs

It can take some time for the Windows container to load. To see the progress, navigate to the following URL by replacing <app_name> with the name of your app.

https://<app_name>.scm.azurewebsites.net/api/logstream

The streamed logs look like this:

2018-07-27T12:03:11  Welcome, you are now connected to log-streaming service.
27/07/2018 12:04:10.978 INFO - Site: win-container-demo - Start container succeeded. Container: facbf6cb214de86e58557a6d073396f640bbe2fdec88f8368695c8d1331fc94b
27/07/2018 12:04:16.767 INFO - Site: win-container-demo - Container start complete
27/07/2018 12:05:05.017 INFO - Site: win-container-demo - Container start complete
27/07/2018 12:05:05.020 INFO - Site: win-container-demo - Container started successfully

Update locally and redeploy

  1. In Visual Studio, in Solution Explorer, open Views > Home > Index.cshtml.

  2. Find the <div class="jumbotron"> HTML tag near the top, and replace the entire element with the following code:

    <div class="jumbotron">
        <h1>ASP.NET in Azure!</h1>
        <p class="lead">This is a simple app that we've built that demonstrates how to deploy a .NET app to Azure App Service.</p>
    </div>
    
  3. To redeploy to Azure, right-click the myfirstazurewebapp project in Solution Explorer and choose Publish.

  4. On the publish page, select Publish and wait for publishing to complete.

  5. To tell App Service to pull in the new image from Docker Hub, restart the app. In the app page in the Azure portal, select Restart > Yes.

    Screenshot of the App Service Overview with the Restart button highlighted.

Browse to the custom container again. As you refresh the webpage, the app should revert to the "Starting up" page at first, then display the updated webpage.

Screenshot of the updated web app in Azure.

Clean up resources

In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.

From the Azure portal menu or Home page, select Resource groups. Then, on the Resource groups page, select myResourceGroup.

On the myResourceGroup page, make sure that the listed resources are the ones you want to delete.

Select Delete resource group, type myResourceGroup in the text box to confirm, and then select Delete.

Azure App Service on Linux provides predefined application stacks on Linux with support for languages such as .NET, Java, Node.js, and PHP. You can also use a custom Docker image to run your web app on an application stack that isn't already defined in Azure. This quickstart shows you how to deploy an image from an Azure Container Registry (ACR) to App Service.

For more information about containerized applications in a serverless environment, see Container Apps.

Prerequisites

Create a container registry

This quickstart uses Azure Container Registry as the registry. You can use other registries, but the steps might differ slightly.

Create a container registry by following the instructions in Quickstart: Create a private container registry using the Azure portal.

Important

Be sure to set the Admin User option to Enable when you create the Azure container registry. You can also set it from the Access keys section of your registry page in the Azure portal. This setting is required for App Service access. For managed identity, see Deploy from ACR tutorial.

Sign in

  1. Launch Visual Studio Code.

  2. Select the Azure logo in the Activity Bar, navigate to ACCOUNTS & TENANTS. Select Sign in to Azure and follow the instructions.

    Screenshot of signing into Azure in Visual Studio Code.

  3. In the Status Bar at the bottom, verify your Azure account email address. In the APP SERVICE explorer, your subscription should be displayed.

  4. In the Activity Bar, select the Docker logo. In the REGISTRIES explorer, verify that the container registry you created appears.

    Screenshot shows the Registries value with Azure expanded.

Check prerequisites

Verify that Docker is installed and running. The following command displays the Docker version if it's running.

docker --version

Create and build image

  1. In Visual Studio Code, open an empty folder and add a file called Dockerfile. In the Dockerfile, paste the content based on your desired language framework:

    In this Dockerfile, the parent image is one of the built-in .NET containers of App Service.

    FROM mcr.microsoft.com/appsvc/dotnetcore:lts
    
    ENV PORT 8080
    EXPOSE 8080
    
    ENV ASPNETCORE_URLS "http://*:${PORT}"
    
    ENTRYPOINT ["dotnet", "/defaulthome/hostingstart/hostingstart.dll"]
    
  2. Open the Command Palette, and type Docker Images: Build Image. Select Enter to run the command.

  3. In the image tag box, specify the tag you want in the following format: <acr-name>.azurecr.io/<image-name>:<tag>, where <acr-name> is the name of the container registry you created. Select Enter.

  4. When the image finishes building, select Refresh at the top of the IMAGES explorer and verify that the image built successfully.

    Screenshot shows the built image with tag.

Deploy to container registry

  1. In the Activity Bar, select the Docker icon. In the IMAGES explorer, find the image you built.

  2. Expand the image, right-click on the tag you want, and select Push.

  3. Make sure the image tag begins with <acr-name>.azurecr.io and press Enter.

  4. When Visual Studio Code finishes pushing the image to your container registry, select Refresh at the top of the REGISTRIES explorer and verify that the image is pushed successfully.

    Screenshot shows the image deployed to Azure container registry.

Deploy to App Service

  1. In the REGISTRIES explorer, expand the image, right-click the tag, and select Deploy Image to Azure App Service.
  2. Follow the prompts to choose a subscription, a globally unique app name, a resource group, and an App Service plan. Choose B1 Basic for the pricing tier, and a region near you.

After deployment, your app is available at http://<app-name>.azurewebsites.net.

A Resource Group is a named collection of all your application's resources in Azure. For example, a Resource Group can contain a reference to a website, a database, and an Azure Function.

An App Service Plan defines the physical resources that to use to host your website. This quickstart uses a Basic hosting plan on Linux infrastructure, which means the site is hosted on a Linux machine alongside other websites. If you start with the Basic plan, you can use the Azure portal to scale up so that yours is the only site running on a machine. For pricing, see App Service pricing.

Browse the website

The Output panel shows the status of the deployment operations. When the operation completes, select Open Site in the pop-up notification to open the site in your browser.

Clean up resources

In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.

From the Azure portal menu or Home page, select Resource groups. Then, on the Resource groups page, select myResourceGroup.

On the myResourceGroup page, make sure that the listed resources are the ones you want to delete.

Select Delete resource group, type myResourceGroup in the text box to confirm, and then select Delete.

Congratulations, you've successfully completed this quickstart.

The App Service app pulls from the container registry every time it starts. If you rebuild your image, you just need to push it to your container registry, and the app pulls in the updated image when it restarts. To tell your app to pull in the updated image immediately, restart it.

Other Azure extensions:

Azure App Service on Linux provides predefined application stacks on Linux with support for languages such as .NET, Java, Node.js, and PHP. You can also use a custom Docker image to run your web app on an application stack that isn't already defined in Azure. This quickstart shows you how to deploy an image from Azure Container Registry to Azure App Service.

For more information about containerized applications in a serverless environment, see Container Apps.

Prerequisites

Clone the sample repository

Clone the the .NET 6.0 sample app with the following command:

git clone https://github.com/Azure-Samples/dotnetcore-docs-hello-world.git

Push the image to Azure Container Registry

Make sure you are in the cloned repository's root folder. This repository contains a Dockerfile.linux file.

  1. Sign in to the Azure CLI.

    az login
    
  2. Sign in to Azure Container Registry.

    az acr login -n <your_registry_name>
    
  3. Build the container image. This example uses the image name dotnetcore-docs-hello-world-linux.

    docker build -f Dockerfile.linux -t <your_registry_name>.azurecr.io/dotnetcore-docs-hello-world-linux . 
    
  4. Push the container image to Azure Container Registry.

    docker push <your_registry_name>.azurecr.io/dotnetcore-docs-hello-world-linux:latest
    

    Note

    The Dockerfile sets the port number to 80 internally. For more information about configuring the container, see Configure custom container.

Deploy to Azure

Sign in to Azure portal

Sign in to the Azure portal.

Create Azure resources

  1. Type app services in the search. Under Services, select App Services.

    Screenshot of searching for 'app services' in the Azure portal.

  2. In the App Services page, select Create > Web App.

  3. In the Basics tab, under Project details, select the correct subscription. Select Create new resource group. Type myResourceGroup for the name.

    Screenshot of the Project details section showing where you select the Azure subscription and the resource group for the web app.

  4. Under Instance details:

    • Enter a globally unique name for your web app.
    • Select Container.
    • For the Operating System, select Linux.
    • Select a Region that you want to serve your app from.

    Screenshot of the Instance details section where you provide a name for the virtual machine and select its region, image, and size.

  5. Under App Service Plan, select Create new App Service Plan. Enter myAppServicePlan for the name. To change to the Free tier, select Change size, select the Dev/Test tab, select F1. Select Apply.

    Screenshot of the App Service plan options.

  6. At the top of the page, select the Container tab.

  7. In the Container tab, for Image Source, select Azure Container Registry. Under Azure container registry options, set the following values:

    • Registry: Select your Azure Container Registry.
    • Image: Select dotnetcore-docs-hello-world-linux.
    • Tag: Select latest.

    Screenshot showing the Azure Container Registry options.

  8. Select Review + create at the bottom of the page.

    Screenshot showing the Review and create button at the bottom of the page.

  9. After validation runs, select Create.

  10. After deployment finishes, select Go to resource.

    Screenshot showing the next step of going to the resource.

Browse to the app

Browse to the deployed application in your web browser at the URL http://<app-name>.azurewebsites.net.

Screenshot showing the deployed application.

Clean up resources

In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.

From the Azure portal menu or Home page, select Resource groups. Then, on the Resource groups page, select myResourceGroup.

On the myResourceGroup page, make sure that the listed resources are the ones you want to delete.

Select Delete resource group, type myResourceGroup in the text box to confirm, and then select Delete.

Congratulations, you've successfully completed this quickstart.

The App Service app pulls from the container registry each time it starts. If you rebuild your image, just push it to your container registry. The app pulls in the updated image when it restarts. To tell your app to pull in the updated image immediately, restart it.

Azure App Service provides predefined application stacks on Windows, like ASP.NET or Node.js, that run on IIS. The preconfigured application stacks lock down the operating system and prevent low-level access. Custom Windows containers don't have these restrictions. They let developers fully customize the containers and give containerized applications full access to Windows functionality.

This quickstart shows you how to deploy an ASP.NET app in a Windows image from Azure Container Registry to Azure App Service.

Prerequisites

Clone the sample repository

Clone the the .NET 6.0 sample app with the following command:

git clone https://github.com/Azure-Samples/dotnetcore-docs-hello-world.git

Push the image to Azure Container Registry

Make sure you are in the cloned repository's root folder. This repository contains a Dockerfile.windows file. This article uses Windows Nano Server Long Term Servicing Channel (LTSC) 2022 as the base operating system, explicitly calling out our Windows base.

Note

Even though this container is a Windows container, the paths still need to use forward slashes. For more information, see Write a Dockerfile.

  1. Sign in to the Azure CLI.

    az login
    
  2. Sign in to Azure Container Registry.

    az acr login -n <your_registry_name>
    
  3. Build the container image. This example uses the image name dotnetcore-docs-hello-world-windows.

    docker build -f Dockerfile.windows -t <your_registry_name>.azurecr.io/dotnetcore-docs-hello-world-windows . 
    
  4. Push the container image to Azure Container Registry.

    docker push <your_registry_name>.azurecr.io/dotnetcore-docs-hello-world-windows:latest
    

    Note

    The Dockerfile sets the port number to 80 internally. For more information about configuring the container, see Configure custom container.

Deploy to Azure

Sign in to Azure portal

Sign in to the Azure portal.

Create Azure resources

  1. Type app services in the search. Under Services, select App Services.

    Screenshot of searching for 'app services' in the Azure portal.

  2. In the App Services page, select Create > Web App.

  3. In the Basics tab, under Project details, select the correct subscription. Select Create new resource group. Type myResourceGroup for the name.

    Screenshot of the Project details section showing where you select the Azure subscription and the resource group for the web app.

  4. Under Instance details:

    • Enter a globally unique name for your web app.
    • Select Container.
    • For the Operating System, select Linux.
    • Select a Region that you want to serve your app from.

    Screenshot of the Instance details section where you provide a name for the virtual machine and select its region, image, and size.

  5. Under App Service Plan, select Create new App Service Plan. Enter myAppServicePlan for the name. To change tier, select Explore pricing plans, select a plan, and choose Select at the bottom of the page.

    Screenshot of the App Service plan options.

  6. At the top of the page, select the Container tab.

  7. In the Container tab, for Image Source, select Azure Container Registry . Under Azure container registry options, set the following values:

    • Registry: Select your Azure Container Registry.
    • Image: Select dotnetcore-docs-hello-world-linux.
    • Tag: Select latest.

    Screenshot showing the Azure Container Registry options.

  8. Select Review + create at the bottom of the page.

    Screenshot showing the Review and create button at the bottom of the page.

  9. After validation runs, select Create.

  10. After deployment finishes, select Go to resource.

    Screenshot showing the next step of going to the resource.

Browse to the app

Browse to the deployed application in your web browser at the URL http://<app-name>.azurewebsites.net.

Screenshot of the Windows App Service with messaging that containers without a port exposed runs in background mode.

The Host operating system appears in the footer, which confirms that it runs in a Windows container.

Clean up resources

In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.

From the Azure portal menu or Home page, select Resource groups. Then, on the Resource groups page, select myResourceGroup.

On the myResourceGroup page, make sure that the listed resources are the ones you want to delete.

Select Delete resource group, type myResourceGroup in the text box to confirm, and then select Delete.

Congratulations, you've successfully completed this quickstart.

The App Service app pulls from the container registry each time it starts. If you rebuild your image, just push it to your container registry. The app pulls in the updated image when it restarts. To tell your app to pull in the updated image immediately, restart it.

Azure App Service provides predefined application stacks on Windows, like ASP.NET or Node.js, that run on IIS. The preconfigured application stacks lock down the operating system and prevent low-level access. Custom Windows containers don't have these restrictions. They let developers fully customize the containers and give containerized applications full access to Windows functionality.

This quickstart shows you how to deploy an ASP.NET app in a Windows image from Microsoft Artifact Registry to Azure App Service.

Prerequisites

Connect to Azure

Sign into your Azure account by using the Connect-AzAccount command and following the prompt:

Connect-AzAccount

Create a resource group

Create a resource group with the New-AzResourceGroup command. An Azure resource group is a logical container into which Azure resources are deployed and managed.

The following example creates a resource group named myResourceGroup in the eastus location. To see all supported locations for App Service, run the Get-AzLocation command.

New-AzResourceGroup -Name myResourceGroup -Location eastus

The command returns Login Succeeded.

Create your App Service Plan

Create a new App service Plan by using the New-AzAppServicePlan command.

The following example creates an App Service plan named myAppServicePlan in the PremiumV3 pricing tier (-Tier PremiumV3). The -HyperV parameter specifies Windows container.

New-AzAppServicePlan -Name myAppServicePlan -Location eastus -ResourceGroupName myResourceGroup -Tier PremiumV3 -HyperV

Create your web app

Create a new app by using the New-AzWebApp command:

New-AzWebApp -Name myWebApp -AppServicePlan myAppServicePlan -Location eastus -ResourceGroupName myResourceGroup -ContainerImageName mcr.microsoft.com/azure-app-service/windows/parkingpage:latest
  • The Name parameter specifies the web app name.
  • The AppServicePlan parameter specifies the App Service Plan Name.
  • The Location parameter specifies the location.
  • The ResourceGroupName parameter specifies the name of the Resource Group.
  • The ContainerImageName parameter specifies a Container Image Name and optional tag.

The command might take a few minutes to complete.

Browse to the app

Browse to the deployed application in your web browser at the URL http://<app-name>.azurewebsites.net.

Screenshot of the Windows App Service with messaging that containers without a port exposed runs in background mode.

Clean up resources

Remove the resource group by using the Remove-AzResourceGroup command:

Remove-AzResourceGroup myResourceGroup

Congratulations, you've successfully completed this quickstart.

The App Service app pulls from the container registry each time it starts. If you rebuild your image, just push it to your container registry. The app pulls in the updated image when it restarts. To tell your app to pull in the updated image immediately, restart it.

Azure App Service provides predefined application stacks on Windows, like ASP.NET or Node.js, that run on IIS. The preconfigured application stacks lock down the operating system and prevent low-level access. Custom Windows containers don't have these restrictions. They let developers fully customize the containers and give containerized applications full access to Windows functionality.

This quickstart shows you how to deploy an ASP.NET app in a Windows image from Microsoft Artifact Registry to Azure App Service.

Prerequisites

Connect to Azure

Sign into your Azure account by using the az login command and following the prompt:

az login

Create a resource group

Create a resource group with the az group create command. An Azure resource group is a logical container into which Azure resources are deployed and managed.

The following example creates a resource group named myResourceGroup in the eastus location. To see all supported locations for App Service, run the az appservice list-locations command.

az group create --name myResourceGroup --location eastus

Create your App Service Plan

Create an App Service plan in the resource group with the az appservice plan create command.

The following example creates an App Service plan named myAppServicePlan in the P1V3 pricing tier (--sku P1V3).

az appservice plan create --resource-group myResourceGroup --location eastus --name myAppServicePlan --hyper-v --sku p1v3

Note

If you run into the error, The behavior of this command has been altered by the following extension: appservice-kube, remove the appservice-kube extension.

Create your web app

Create a custom container web app in the myAppServicePlan App Service plan with the az webapp create command. Don't forget to replace myContainerApp with a unique app name (valid characters are a-z, 0-9, and -).

az webapp create --name myContainerApp --plan myAppServicePlan --resource-group myResourceGroup --deployment-container-image-name mcr.microsoft.com/azure-app-service/windows/parkingpage:latest
  • The Name parameter specifies the web app name.
  • The AppServicePlan parameter specifies the App Service Plan Name.
  • The Location parameter specifies the location.
  • The ResourceGroupName parameter specifies the name of the Resource Group.
  • The deployment-container-image-name parameter specifies a container image name and optional tag.

Browse to the app

Browse to the deployed application in your web browser at the URL http://<app-name>.azurewebsites.net.

Screenshot of the Windows App Service with messaging that containers without a port exposed runs in background mode.

Clean up resources

Remove the resource group by using the az group delete command:

az group delete --no-wait --name <resource_group>

Congratulations, you've successfully completed this quickstart.

The App Service app pulls from the container registry each time it starts. If you rebuild your image, just push it to your container registry. The app pulls in the updated image when it restarts. To tell your app to pull in the updated image immediately, restart it.