Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This tutorial walks through using Docker to containerize your Spring Boot application and deploy your own docker image to a Linux host in the Azure App Service.
In order to complete the steps in this tutorial, you need to have the following prerequisites:
Note
Due to the virtualization requirements of this tutorial, you cannot follow the steps in this article on a virtual machine; you must use a physical computer with virtualization features enabled.
The following steps walk through the steps that are required to create a simple Spring Boot web application and test it locally.
Open a command-prompt and create a local directory to hold your application, and change to that directory; for example:
mkdir SpringBoot
cd SpringBoot
Clone the Spring Boot on Docker Getting Started sample project into the directory you created; for example:
git clone https://github.com/spring-guides/gs-spring-boot-docker.git
Change directory to the completed project; for example:
cd gs-spring-boot-docker/complete
Build the JAR file using Maven; for example:
mvn package
Once the web app has been created, change directory to the target
directory where the JAR file is located and start the web app; for example:
cd target
java -jar spring-boot-docker-complete-0.0.1-SNAPSHOT.jar --server.port=80
Test the web app by browsing to it locally using a web browser. For example, if you have curl available and you configured the Tomcat server to run on port 80:
curl http://localhost
You should see the following message displayed: Hello Docker World
The following steps walk through using the Azure portal to create an Azure Container Registry.
Note
If you want to use the Azure CLI instead of the Azure portal, follow the steps in Create a private Docker container registry using the Azure CLI 2.0.
Browse to the Azure portal and sign in.
Once you've signed in to your account on the Azure portal, follow the steps in the Create a private Docker container registry using the Azure portal article, which are paraphrased in the following steps for the sake of expediency.
Click the menu icon for New, select Containers, and then select Azure Container Registry.
When the Create container registry page is displayed, enter Registry name, Subscription, Resource group, and Location. Then select Create.
Select Access keys under Settings and turn on the Enabled switch behind the Admin user.
Navigate to the completed project directory for your Spring Boot application - for example, C:\SpringBoot\gs-spring-boot-docker\complete or /users/robert/SpringBoot/gs-spring-boot-docker/complete - and open the pom.xml file with a text editor.
Update the <properties>
collection in the pom.xml file with the latest version of jib-maven-plugin, login server value, and access settings for your Azure Container Registry from the previous section of this tutorial. For example:
<properties>
<jib-maven-plugin.version>3.2.0</jib-maven-plugin.version>
<docker.image.prefix>wingtiptoysregistry.azurecr.io</docker.image.prefix>
<java.version>1.8</java.version>
</properties>
Add jib-maven-plugin to the <plugins>
collection in the pom.xml file. This example uses version 3.2.0.
Specify the base image at <from>/<image>
, here mcr.microsoft.com/openjdk/jdk:11-ubuntu
. Specify the name of the final image to be built from the base in <to>/<image>
.
Authentication {docker.image.prefix}
is the Login server on the registry page shown previously. The {project.artifactId}
is the name and version number of the JAR file from the first Maven build of the project.
<plugin>
<artifactId>jib-maven-plugin</artifactId>
<groupId>com.google.cloud.tools</groupId>
<version>${jib-maven-plugin.version}</version>
<configuration>
<from>
<image>mcr.microsoft.com/openjdk/jdk:11-ubuntu</image>
</from>
<to>
<image>${docker.image.prefix}/${project.artifactId}</image>
</to>
</configuration>
</plugin>
Navigate to the completed project directory for your Spring Boot application and run the following command to rebuild the application and push the container to your Azure Container Registry:
az acr login --name wingtiptoysregistry && mvn compile jib:build
Note
az acr login ...
will try to login to Azure Container Registry, otherwise you need to provide <username>
and <password>
for jib-maven-plugin, see Authentication Methods in jib.Browse to the Azure portal and sign in.
Click the menu icon for Create a resource, select Compute, and then select Web App.
When the Web App on Linux page is displayed, enter the following information:
Choose your Subscription from the drop-down list.
Choose an existing Resource Group, or specify a name to create a new resource group.
Enter a unique name for the App name; for example: wingtiptoyslinux
Specify Docker Container
to Publish.
For the Operating System field, choose Linux.
Select Region.
Accept Linux Plan and choose an existing App Service Plan, or select Create new to create a new app service plan.
Click Next: Docker.
On the Web App page select Docker, and enter the following information:
Select Single Container.
Registry: Choose your container, for example: wingtiptoysregistry.
Image: Select the image created previously, for example: spring-boot-docker.
Tag: Choose the tag for the image, for example: latest.
Startup Command: Keep it blank since the image already has the start up command
After you've entered all of the above information, select Review + create.
Review the information and select Create.
When the deployment is complete, select Go to resource. The deployment page displays the URL to access the application.
Note
Azure will automatically map Internet requests to embedded Tomcat server that is running on the port - 80. However, if you configured your embedded Tomcat server to run on port - 8080 or custom port, you need to add an environment variable to your web app that defines the port for your embedded Tomcat server. To do so, use the following steps:
Browse to the Azure portal and sign in.
Select the icon for Web Apps, and select your app from the App Services page.
Select Configuration in the left navigation pane.
In the Application settings section, add a new setting named WEBSITES_PORT and enter your custom port number for the value.
Select OK. Then select Save.
When no longer needed, use the Azure portal to delete the resources created in this article to avoid unexpected charges.
To learn more about Spring and Azure, continue to the Spring on Azure documentation center.
For more information about using Spring Boot applications on Azure, see the following articles:
For more information about using Azure with Java, see the Azure for Java Developers and the Working with Azure DevOps and Java.
For further details about the Spring Boot on Docker sample project, see Spring Boot on Docker Getting Started.
For help with getting started with your own Spring Boot applications, see the Spring Initializr at https://start.spring.io/.
For more information about getting started with creating a simple Spring Boot application, see the Spring Initializr at https://start.spring.io/.
For additional examples for how to use custom Docker images with Azure, see Using a custom Docker image for Azure Web App on Linux.
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayTraining
Module
Deploy a Spring Boot app to Azure Container Apps - Training
In this module, you learn how to deploy a Spring Boot app to Azure Container Apps. You deploy a Spring Boot application to Azure Container Apps and maintain it using the built-in Java stack.
Certification
Microsoft Certified: Azure Developer Associate - Certifications
Build end-to-end solutions in Microsoft Azure to create Azure Functions, implement and manage web apps, develop solutions utilizing Azure storage, and more.
Documentation
How to Deploy Spring Boot Applications from Azure CLI
In this quickstart, learn how to launch your application in Azure Spring Apps directly from your source code
Quickstart - Deploy Your First Application to Azure Spring Apps
Describes how to deploy an application to Azure Spring Apps.
Deploy Java Spring Boot apps to Azure Container Apps - Java on Azure
Shows you how to deploy a Java Spring Boot app with sign-in by Microsoft Entra account to Azure Container Apps.