Recent Posts

Docker Swarm

3 minute read

A swarm consists of multiple Docker hosts which run in swarm mode and act as managers (to manage membership and delegation) and workers (which run swarm serv...

Docker Architecture

1 minute read

The engine consists of three major components: Docker Daemon: The daemon (dockerd) is a process that keeps running in the background and waits for commands ...

Docker Registry

2 minute read

An image registry is a centralized place where you can upload your images and can also download images created by others. Docker Hub is the default public re...

Docker images

3 minute read

Images are multi-layered self-contained files that act as the template for creating containers. They are like a frozen, read-only copy of a container. Images...

Container

2 minute read

In the world of containerization, there can not be anything more fundamental than the concept of a container.