Creating GitHub’s personal access token for Jenkins

Introduction A GitHub Personal Access Token is a secure way to access GitHub’s API or command-line interface. It can be used as an alternative to a password when authenticating to GitHub, and provides a higher level of security as it can be revoked at any time and can be limited to specific permissions. Personal Access […]

Build & Push Docker Image to DockerHub using CLI

Introduction Docker image is a set of command instructions for getting an application up and running, and we can create our own custom Docker image and push it to the DockerHub registry.  Prerequisites Step 1: Create a Sample Dockerfile We need to create a sample dockerfile like Apache webserver that will use in build and […]

Building an Golang App Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a Golang Directory To begin, we set up a directory just for Golang-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an NodeJS App Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a nodeJS Directory To begin, we set up a directory just for nodeJS-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an Spring Boot App Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a SpringBoot Directory To begin, we set up a directory just for SpringBoot-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an Python3 App Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a Python3 Directory To begin, we set up a directory just for Python3-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an Tomcat Server Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a Tomcat Directory To begin, we set up a directory just for Apache-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an Nginx Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a Nginx Directory To begin, we set up a directory just for Apache-related files by employing the mkdir command. Step 2: Create a Dockerfile Now […]

Building an Apache Docker Image with Dockerfile

Introduction A Dockerfile is a script that having the command and while deployment the docker image container We will get up and running service which configured with commands. Prerequisites Step 1: Create a Apache Directory To begin, we set up a directory just for Apache-related files by employing the mkdir command. Step 2: Create a […]

Deploy a Spring Boot application to Kubernetes cluster

Introduction Spring Boot is a microservice-building Java-based open source framework. It was created by Pivotal Team and is used to create spring applications that are ready for production and stand-alone use. You will be introduced to Spring Boot and familiarized with its fundamental concepts in this chapter. Kubernetes is a powerful Platform as a Service that […]

Scroll to top