KEMBAR78
Docker 101 for "The Core of Microservice Architecture" | PPT
Introduction
Edith Erika Puclla Pareja
AGENDA
 Introduction the containers
 Virtual Machine VS Containers
 What’s docker
 Docker architecture
 Docker components
 Docker volumes
 Hands on demo
Containers
LXC (LinuX Containers) is
an operating system-level
virtualization method for
running multiple isolated
Linux systems (containers) on
a single control host
LinuXContainers
Isolated
Where does Docker fits here?
Docker offers a high-level tool with
several powerful functionalities
Virtual Machines VS Containers
Virtual Machines Containers
What’s docker?
Automates the
deployment of any
application as a
lightweight, portable,
self-suficient container
that will run virtually
anywhere
Docker architecture
Docker components
Docker image
Docker container
Docker engine
Docker registry
The conteiners are ephemeral…
The state of the
susvival container
must be into an
external mapped
volumen.
-v /data
/u01/app/data
Volumes
Host Disk Volume
:/u01/app/data
Hands on demo! 
https://github.com/editaxz/everis-docker-meetup.git
Docker and Microservices
Docker is used to launch architecture based on microservices, using
containers to isolate one service from another, allowing to scale.
 One imagen => Many containers
 Portable, cloud
 Simple
 Isolation
 Fixed length
To be continue…

Docker 101 for "The Core of Microservice Architecture"