Tag: containers

  • How to dockerize a Java application?

    Docker revolutionized the way applications are deployed. To deploy an application to a server , you no more need to set up required softwares/dependencies on the server machine. Create your application in development environment , build a docker image and then run the image on the server . Below is a simple example of how…

  • How to dockerize Spring Boot app the version 2.3.0 way?

    Spring Boot released its latest version 2.3.0 two days back (15 May 2020). One major feature provided by this release is creating docker images of a spring boot app in a much more efficient way. Prior to this , if you were to dockerize your spring boot app you need to take the jar generated…