top of page

Created Date: 01 Aug, 2019

Last Modified: 06 Nov, 2023

Linux Container

Introduction

Containers are isolated from one another and bundle their own software, libraries and configuration files; they can communicate with each other through well-defined channels. All containers are run by a single operating-system kernel and are thus more lightweight than virtual machines. Containers are created from images that specify their precise contents. Images are often created by combining and modifying standard images downloaded from public repositories.

List of container

Container vs Virtual Machine vs Traditional

Kubernetes VS Docker Swarm

Container orchestration is fast evolving. Both Kubernetes (K8S) and Docker Swarm are the two major players in this field. They are important tools that are used to deploy and manage the containers inside a cluster. Both tools are open sources system and made  for automating deployment, scaling, and management of containerized applications. The Kubernetes is developed by Google and focus on larger scale and complex clustering environment. However, Docker Swarm, is just working methodology.

bottom of page