Author : Aftab Ali

Push a Docker Image To Docker Hub Using Jenkins

Introduction Jenkins Pipeline is a suite of plugins that allows creating simple-to-complex build pipelines as code in Jenkins, using a Groovy-based domain-specific language. Prerequisites Step 1: Generate Access Tokens We need to generate the Access token for Github and DockerHub, Use the follwowing staps to get that. For Github access token For DockerHub access token […]

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