Category: docker

  • 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…