How to build Docker Images from Dockerfile

Introduction Docker has changed the way we build, package, and deploy applications. In this tutorial, we’ll learn about the Dockerfile. What it is, how to create a Dockerfile, and how to configure the basics to Build Docker images from it. Docker images and Docker containers at a glance : A Docker image contains the application […]

Read more

How to install and configure Jenkins using Docker containers

Introduction In the previous tutorial, we learned how to install and configure Jenkins’s stable version from the ubuntu repositories. In this article, we will discuss how to install Jenkins server using docker containers In this article, you will learn how to run Jenkins docker containers using two popular docker images. To read the previous article […]

Read more

How to install and secure Redis on ubuntu 18.04

Introduction In the previous tutorial, we have discussed with how to install and configure Redis latest version from source and made it fully functional. If you want to check out that tutorial goes to Redis install from Source. In this article, we will discuss how to install Redis from the official ubuntu repositories. Before We […]

Read more

How To Install and Use Docker on Ubuntu 16.04/18.04/Aws Ec2

Introduction Docker is an open-source containerization tool that allows you to easily build, test, and deploy applications. Docker helps to package an application with all parts (code, logs, libraries, configuration settings, and other dependencies) and allows them to run as isolated containers. Containers are lighter weight, portable.self-sufficient, and easier to manage. Docker software is maintained […]

Read more

How To Install And Configure MySQL on Ubuntu 16.04/18.04 LTS

Introduction MySQL is an open-source relational database that is free and widely used apart of Popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl)stack.This RDBMS is backed by Oracle and runs on almost all platforms such as Linux, UNIX and MS Windows.In this article will learn how to install MySQL from default repositories on ubuntu 16.04. Also we […]

Read more