Kubernetes Handbook
  • Introduction
  • Prerequisites
    • What is Containerization
    • What is Docker
    • Difference between Docker and VM
  • Features of Kubernetes
    • What is Kubernetes
    • Features of Kubernetes - 1
    • Features of Kubernetes - 2
    • Which Tool to Use for Orchestration
  • Architecture
    • Master Node
    • etcd and kubectl
    • Worker Nodes
  • Pods and Nodes
    • Nodes
    • Pods
  • Controllers
    • Benefits of Controllers
    • Kinds of Controllers
  • Minikube
    • What is Minikube
  • Installation and Running (Mac OS)
    • Installation
    • Running Hello World Application
  • Labels Namespaces and Selectors
    • Labels
    • Namespaces
    • Selectors
  • Health Checks Rollouts and Rollbacks
    • Health Checks
    • Rollouts and Rollbacks
  • Config Maps and Secrets
    • Config Maps
    • Secrets
  • Running Jobs
    • How to Run Jobs
  • Dashboard and Debugging
    • Kubernetes Dashboard
    • Debugging
Powered by GitBook
On this page
  • What is a Container?
  • In relevance to OOPS concept, Container (object) is a runtime instance of docker image (class).
  • A Container has the following components

Was this helpful?

  1. Prerequisites

What is Containerization

What is a Container?

A container is a collection of several processes under one namespace having access to one operating system kernel which it shares with other containers with little or no access between containers.

In relevance to OOPS concept, Container (object) is a runtime instance of docker image (class).

A Container has the following components

  1. Docker Image

  2. An execution environment

  3. Set of instructions

PreviousIntroductionNextWhat is Docker

Last updated 3 years ago

Was this helpful?