Skip to content

arpadharcsa/containerization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Containerization and Spring Boot

How to build the app

Create the runnable application via Maven

mvn clean package

Create the docker image

docker build -t spring-docker:1.0.0 .

Start the container instance

docker run -d -p 8888:8080 --name demo spring-docker:1.0.0

Build results

Description Version Size
Basic Docker image has been created without any optimisation 1.0.0 486MB
Change base image to eclipse-temurin with jdk 1.1.0 471MB
Introduce multi-stage build in order to separate the compile time and runtime dependencies. Now we are able to set JRE-based base image 1.2.0 285MB

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages