Explearn

Docker : Brief Introduction - Part 1

May 31, 2017

Docker has gained popularity among DevOps teams recently due to its efficient and straightforward usage of containerization technology. Let us take a brief look at Docker in this post. There will be few additional posts in continuation of this, where we will discuss few additional details.

What is Docker ?

Why Docker Containers ?

Docker Architecture

 

 

 

Docker Image

Docker Registries

Docker Containers

Installing Docker

 

 

 

Launching Docker CLI

docker –v

Testing Docker

docker run hello-world

Docker Services

docker service create –name [name] image

Example :  docker service create –name redis redis:3.0.6

Docker Run Example