Step-By-Step Guide To Create A Spring Boot MVC Microservice With Docker SpringBoot is a popular spring framework capable of running as a standalone executable. It fits well in microservices architecture where each service is supposed to be running independently. In Docker, each Microservice(Spring Boot rest service) can be installed in a separate container and accessed […]
Build and deploy Docker Image with Docker Maven plugin
Build a Docker Image and Run a Docker Container with docker maven plugin fabric8.io Introduction The maven plugin for docker fabric8io/docker-maven-plugin helps us in building docker images and running containers. In case you are thinking about the difference between an image and container then please note that a running image is called container. In this […]
How to map domain name to Amazon AWS EC2 instance
Map domain name from GoDaddy to Amazon EC2 instance. Introduction If you want to associate your domain name with Amazon EC2 instance for which provider is different than Amazon Route 53 like GoDaddy, BlueHost etc.The easiest way is to do IP address forwarding where you just forward the incoming requests to Elastic IP provided by […]
How to enable jenkins to auto build with BitBucket server
Integrate BitBucket webhook with Jenkins to auto build on push of code to a bitbucket repository One of the goals of Continuous Integration andContinuous deployment is that once the code is pushed to the repository it should be tested, built and then packaged for deployment. BitBucket webhook makes is possible to trigger real-time notifications to Jenkins […]
How to Install Jenkins on Docker
Installing Docker on Jenkins Jenkins is a great tool to build and package artifacts, it can be either deployed independently as a service in docker, lets go through the steps required to install Jenkins on docker as a container. In this tutorial, we will Get Jenkins Docker Image from Docker Hub Run the Docker Image […]
How to Install Artifactory on Docker
Installing Artifactory on Docker JFrog Artifactory is a repository manager used for versioning deployable like a jar, war, docker image etc. Artifactory Pro is a licensed/paid version which will let you create repositories for docker images and much more.Artifactory OSS is open source and a restrective version where you can create maven repositories and few others. […]
How to Connect to Spring BOOT Rest service to Mongo DB in Docker
Connect Spring BOOT Rest Service To MONGO DB within Docker SpringBoot is a popular spring framework that allows users to create projects capable of running as standalone executables . It fits in so well in microservices architecture where each service is supposed to be running independently. Spring boot can easily be integrated with different backend database […]
How to add remote archetype catalog in Eclipse
Add Maven Remote catalogue in eclipse Maven remote catalogues are very useful in starting a project quickly and neatly. The project structure including src, test directory are created along with pom dependencies. Follow below steps to add remote archetype catalogue Go to Windows -> Preferences -> Maven ->Archetype Click on Add Remote Catalog Add catalogue […]