More specifically, you use Spring Boot for application development, Kubernetes for
container deployment, and the Azure Kubernetes
Service (AKS) to host your application.
Kubernetes and Docker are
open-source solutions that help developers automate the deployment, scaling,
and management of their applications running in containers.
Create the Spring Boot on Docker Getting Started web app
The
following steps walk you through building a Spring Boot web application and
testing it locally.
1.
Open a command-prompt and create a local directory to hold your
application, and change to that directory; for example:
1.Create directory.
mkdir
C:\SpringBoot
cd C:\SpringBoot
2. Clone
the Spring Boot on Docker Getting
Started sample project into the directory.
git clone
https://github.com/spring-guides/gs-spring-boot-docker.git
0 Comments