Docker Introduction
What is Docker? Docker is a popular software platform that creates and manages containers for application development. The use of containers to deploying an application is called as containerization. There are so many things that make containerization popular among developers, even though containers has been used for a long time ago. These are the benefits…
Installation & Setting Up Docker on CentOS 7
In this section I will tell you how to install Docker on your CentOS 7. So your computer or virtual box must be already installed with CentOS 7 and also have an access to internet. To install docker you must access the system as the super user. The step is : First, open your Terminal.…
Create a docker file and build an Apache web server docker image
In this section I will show you how to create a docker file and also building an Apache web server using docker image. Let’s follow the step below: Setting your virtual box network like this picture below. After that start the CentOS 7 in your virtual box and open the terminal. Change the user to…
Introducing Docker Hub
Docker hub is a platform that been use for storing and sharing the container images with an array of content sources. The content sources that provided by docker hub is including container community developers, open source projects and independent software vendors (ISV) building and distributing the code in containers. Docker hub also can be a…
Docker MariaDB
MariaDB is a community-developed fork of the MySQL relational database management system intended to remain free under the GNU GPL. Being a fork leading open source software system, it is not able for being led by the original developers of MySQL, who forked it due to concers over its acquisition by Oracle. Contributors are required…
Docker Compose
Docker compose is a tool for determine and running more than one container in Docker applications. If you use compose it means that you using a YAML file to configure the application services. Then, just with a single command all the service can be created and started. Compose can work in all environment such as…
Docker Live Streaming
In this section I will share some tutorial about how to make a video live streaming with docker by using CentOS 7. First you need to install VLC Media Player apps on your computer. If you don’t have the apps, you can download it in here. Okay if all has been ready, open your terminal…
Docker Swarm
The latest version of Docker has been including swarm mode for managing a cluster of Docker Engine. Creating swarm, deploying application services to a swarm and manage the swarm behavior you can to do it with Docker CLI. I will show you some example of using docker swarm. In here I use two machines and…
Kubernetes
Basic of kubernetes Kubernetes is an open source platform that can manage the workloads and services by containerized it. Kubernetes provides a framework that run a distributed systems resiliently. In here I will show you some tutorial for make a cluster with kubernetes. A kubernetes cluster consist of two type resources. Master : coordinates the…