Home
Marco Lenzo Blog
Cancel

Setup an Nginx Maintenance Page

Nginx grows in popularity day by day. Its solid performance and ease of setup make it a perfect tool to proxy traffic to your backend. In this article I will describe how you can configure a mainte...

Create a Kubernetes cluster on CentOS 7

Kubernetes is an open source system developed by Google which automates deployment, operations and scaling of containerized applications. It is a holistic solution for automated delivery offering a...

Package a Spring Boot application into a Docker container

In this article, I will describe how we can easily package our Spring Boot Java Application into a Docker container using the docker-maven-plugin The reason why we favor containers in our Continuo...

Install UnrealIRCd Server on CentOS 7

In this article we will install UnrealIRCd on a CentOS 7 machine. UnrealIRC is the most popular IRC server. It is written in C and it is open source. User Setup and Download ## Add User adduser i...

Install Jenkins on CentOS 7

Install Jenkins in few steps on CentOS 7. Java is a pre-requisite for your Jenkins installation. If you don’t have it, go ahead and install it. Note that Jenkins is incompatible with the GCJ versi...

Continuous Integration with Git and Jenkins

Continuous Integration (CI) defines a software development process where the source code is pushed by developers to a central repository and verified by automated builds. Its main aim is to detect ...

Microservices with Spring Boot

In this article, we will learn how to build a microservice in minutes with Spring Boot. The first step in our continuous delivery pipeline is the development phase. If we were allowed to start wi...

Continuous Delivery Prototyping Step by Step

This is the first of a series of articles where we will embark on our journey to prototyping continuous delivery. The approach taken is going to be very practical. My assumption is that if you a...