What is Docker?

Gotta give me more information than that.

What is docker related to? Do you have a link? Have you googled your answer?
 
What is Docker and why is it so popular?

Docker is basically a container engine which uses the Linux Kernel features like namespaces and control groups to create containers on top of an operating system and automates application deployment on the container. Docker uses Copy-on-write union file system for its backend storage.
 
Docker is a set of platform as a service products that uses OS-level virtualization to deliver software in packages called containers. 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.
From Wikipedia
 
Last edited by a moderator:
Top