SlideShare a Scribd company logo
Docker 101
Introduction to Docker and Containers
Ashutoshh Singh
About Me
ashutoshh@linux.com
+91-9509957594
linkedin.com/in/ashutoshh
● Chief Technology Officer, AdHoc Networks
● DevOps Consultant
● Research Areas: DevOps, Deep Learning, Neural Networks
● Talks:
○ PyCon India 2017
○ DevConf India 2018
● Open Source Contributor: Fedora, Docker and Ansible
slashdevops.blogspot.com
Agenda
● Why Containers?
● What are Containers?
○ Characteristics
○ Relationship between VMs and Containers.
● Docker
○ About Docker
○ What is Docker?
○ Components of Docker
● Docker Use Cases
Why containers?
1. Software Industry has Changed
● Before:
○ monolithic applications
○ long development cycles
○ single environment
○ slowly scaling up
● Now:
○ de-coupled services
○ fast and iterative improvements
○ multiple environments
○ quickly scaling out
2. Deployment becomes Complex
● Many different stacks:
○ Languages
○ Frameworks
○ Databases
● Many different targets:
○ Individual development environments
○ Pre-production, QA, staging
○ Production: On-premise, Cloud, Hybrid
The Deployment Problem
Parallel Problem in Shipping Industry
Solution for Shipping Industry: Intermodal Shipping Containers
Solution for Software Industry: Container System for Applications
What are containers?
● a Set of Processes sharing a common Kernel’s resources for
execution.
● Isolated from the rest of the machine.
(can’t see/affect/harm host or other containers)
● Implementation:
○ Uses namespaces to view the system’s privately
(network interfaces, PID tree, etc.)
○ Uses cgroups to have metered/limited/reserved resources
What are containers?
Characteristics:
● Fast
○ Boots in milliseconds
● Lightweight
○ Just a few MBs of intrinsic disk/memory usage
● Portable
○ Migration from one system to another like a VM.
○ Deploy new applications or kill the old ones instantly.
● Secure
○ Considerable level of security to applications, as Containers
remain isolated from each other on the guest OS.
Relationship between Virtual Machines and Containers
Docker
About Docker
● Software debuted to the public in Santa Clara at PyCon in
2013.
● Written in: Go
● Products maintained by Docker, Inc.
○ Docker Engine
○ Docker Engine Enterprise
○ Docker Hub
○ Docker Desktop
● Headquarters: San Francisco
Solomon Hykes
Original Author
What is Docker?
● Installing Docker = Installing Docker Engine + Docker CLI
● Docker Engine is a daemon which manages containers, the same way
that a hypervisor manages VMs.
● Docker CLI is used to interact with the Docker Engine.
● The Docker CLI and the Docker Engine communicate through an API.
● However, there are many other programs, and client libraries,
to use the API.
What is Docker?
Components of Docker
● Docker Client and Server
● Docker Images
● Docker Registries
● Docker Containers
1. Docker Client and Server
● The Docker Server receives the request from Docker Client, and then,
processes it accordingly.
● Docker Server is also known as, Docker Engine.
Components of Docker
Docker Daemon
Docker
Container
Docker Client Docker ClientDocker Client
Docker Host
2. Docker Containers
● Abstraction at the app layer that packages code and
dependencies together.
● Multiple containers can run on the same machine and share the OS
kernel with other containers.
● Each container runs as isolated processes in user space.
Components of Docker
3. Docker Images
● Image = files + metadata
● The file forms the root filesystem of the container.
● The metadata can indicate a number of things, like:
○ the author of the image
○ the command to execute in the container when starting it
○ environment variables to be set
○ etc.
● Images are made of layers, conceptually stacked on top of each other.
● Each layer can add, change, and remove files and/or metadata.
● Images can share layers to optimize disk usage, transfer times, and memory
use.
● Images are STATELESS and IMMUTABLE.
Components of Docker
3. Docker Images
● There are two methods to build an image:
○ By using a read-only template.
○ Create a Dockerfile (Automated way of building an image).
● The process of building a new image is called:
“COMMITING A CHANGE”.
Components of Docker
3. Docker Images
Components of Docker
Ubuntu Base
PHP Engine
Apache HTTPD
PHP Extensions
php-with-mysql
● For this image, we start with base image of Ubuntu.
● In the next layer, we add Apache.
● Next, we install the PHP Engine.
● Now, we may add some PHP Extensions
(mysql, etc.)
● Then, we tag image with the name ‘php-with-mysql’
● Once built, this image may serve as a base image
for subsequent images.
4. Docker Image Namespaces
● Official Images / Root Namespace
● User (and organizations) images / User Namespace
● Self-Hosted Images / Self-Hosted Namespace
Components of Docker
4. Docker Image Namespaces
Official Images / Root Namespace
● Root namespace is for official images.
They are put by Docker Inc., and generally authored and maintained by third parties.
● Includes images like:
○ Small, "swiss-army-knife" images like busybox.
○ Distro images to be used as bases for builds like ubuntu, fedora, etc.
○ Ready-to-use components and services, like redis, postgresql, etc.
Components of Docker
4. Docker Image Namespaces
User (and organizations) images / User Namespace
● Holds images for Docker Hub users and organizations.
● e.g. ashutoshh/image
○ Docker Hub user: ashutoshh
○ Image name: image
Components of Docker
4. Docker Image Namespaces
Self-Hosted Images / Self-Hosted Namespace
● Holds images which are not hosted on Docker Hub, but on third party registries.
● They contain the hostname (or IP address), and optionally the port,
of the registry server.
● e.g. registry.example.com:5000/image
○ registry.example.com:5000 : Host and Port of registry
○ image : Image name
Components of Docker
Docker
Use
Cases
Everything in Google runs within a container.
Over a billion containers in a week!
Google is firing up some
3,300 containers every second
on an average.
Runs containers on-premises.
Container instances host about
300 logical services.
Nodes are virtualized and running
on top of VMware vSphere
About 1,000 container
instances across 32 nodes.
Finnish Railways could increase the density and utilization of its
Amazon compute instances, saving on its cloud bill.
An Average Cost savings of 50% with Docker Enterprise Edition.
About 800 container instances
in total (300 are for production).
Finnish Railways
THANK YOU :)
Questions?

More Related Content

What's hot

What is Docker
What is DockerWhat is Docker
What is Docker
Pavel Klimiankou
 
Docker
DockerDocker
Docker: From Zero to Hero
Docker: From Zero to HeroDocker: From Zero to Hero
Docker: From Zero to Hero
fazalraja
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
Instruqt
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
dotCloud
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
Phuc Nguyen
 
Introduction to Docker Compose
Introduction to Docker ComposeIntroduction to Docker Compose
Introduction to Docker Compose
Ajeet Singh Raina
 
Docker intro
Docker introDocker intro
Docker intro
Oleg Z
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
Luong Vo
 
Docker introduction (1)
Docker introduction (1)Docker introduction (1)
Docker introduction (1)
Gourav Varma
 
Dockers and containers basics
Dockers and containers basicsDockers and containers basics
Dockers and containers basics
Sourabh Saxena
 
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
Simplilearn
 
Docker introduction for the beginners
Docker introduction for the beginnersDocker introduction for the beginners
Docker introduction for the beginners
Juneyoung Oh
 
Docker basics
Docker basicsDocker basics
Docker basics
AmanSoni129
 
Introduction to Docker - 2017
Introduction to Docker - 2017Introduction to Docker - 2017
Introduction to Docker - 2017
Docker, Inc.
 
Introduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker CaptainIntroduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker Captain
Ajeet Singh Raina
 
presentation on Docker
presentation on Dockerpresentation on Docker
presentation on Docker
Virendra Ruhela
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to dockerJohn Willis
 
Docker.pptx
Docker.pptxDocker.pptx
Docker.pptx
balaji257
 
Docker Containers Deep Dive
Docker Containers Deep DiveDocker Containers Deep Dive
Docker Containers Deep Dive
Will Kinard
 

What's hot (20)

What is Docker
What is DockerWhat is Docker
What is Docker
 
Docker
DockerDocker
Docker
 
Docker: From Zero to Hero
Docker: From Zero to HeroDocker: From Zero to Hero
Docker: From Zero to Hero
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Introduction to Docker Compose
Introduction to Docker ComposeIntroduction to Docker Compose
Introduction to Docker Compose
 
Docker intro
Docker introDocker intro
Docker intro
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Docker introduction (1)
Docker introduction (1)Docker introduction (1)
Docker introduction (1)
 
Dockers and containers basics
Dockers and containers basicsDockers and containers basics
Dockers and containers basics
 
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
 
Docker introduction for the beginners
Docker introduction for the beginnersDocker introduction for the beginners
Docker introduction for the beginners
 
Docker basics
Docker basicsDocker basics
Docker basics
 
Introduction to Docker - 2017
Introduction to Docker - 2017Introduction to Docker - 2017
Introduction to Docker - 2017
 
Introduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker CaptainIntroduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker Captain
 
presentation on Docker
presentation on Dockerpresentation on Docker
presentation on Docker
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
 
Docker.pptx
Docker.pptxDocker.pptx
Docker.pptx
 
Docker Containers Deep Dive
Docker Containers Deep DiveDocker Containers Deep Dive
Docker Containers Deep Dive
 

Similar to Docker 101 : Introduction to Docker and Containers

Docker up and Running For Web Developers
Docker up and Running For Web DevelopersDocker up and Running For Web Developers
Docker up and Running For Web Developers
BADR
 
Docker Up and Running for Web Developers
Docker Up and Running for Web DevelopersDocker Up and Running for Web Developers
Docker Up and Running for Web Developers
Amr Fawzy
 
Introduction to Docker and Monitoring with InfluxData
Introduction to Docker and Monitoring with InfluxDataIntroduction to Docker and Monitoring with InfluxData
Introduction to Docker and Monitoring with InfluxData
InfluxData
 
Docker primer and tips
Docker primer and tipsDocker primer and tips
Docker primer and tips
Samuel Chow
 
Containerization using docker and its applications
Containerization using docker and its applicationsContainerization using docker and its applications
Containerization using docker and its applications
Puneet Kumar Bhatia (MBA, ITIL V3 Certified)
 
DOCKER-PIAIC-SLIDES
DOCKER-PIAIC-SLIDESDOCKER-PIAIC-SLIDES
DOCKER-PIAIC-SLIDES
MuhammadAhmed651877
 
Best Practices for Developing & Deploying Java Applications with Docker
Best Practices for Developing & Deploying Java Applications with DockerBest Practices for Developing & Deploying Java Applications with Docker
Best Practices for Developing & Deploying Java Applications with Docker
Eric Smalling
 
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
Ambassador Labs
 
Docker on Power Systems
Docker on Power SystemsDocker on Power Systems
Docker on Power Systems
Cesar Maciel
 
Docker presentation
Docker presentationDocker presentation
Docker presentation
thehoagie
 
Getting started with docker (2017)
Getting started with docker (2017)Getting started with docker (2017)
Getting started with docker (2017)
JEMLI Fathi
 
Docker 101
Docker 101Docker 101
Docker 101
Hung-Che Lo
 
[@NaukriEngineering] Docker 101
[@NaukriEngineering] Docker 101[@NaukriEngineering] Docker 101
[@NaukriEngineering] Docker 101
Naukri.com
 
Docker for dev
Docker for devDocker for dev
Docker for dev
Erik Talboom
 
JOSA TechTalks - Docker in Production
JOSA TechTalks - Docker in ProductionJOSA TechTalks - Docker in Production
JOSA TechTalks - Docker in Production
Jordan Open Source Association
 
Azure ai on premises with docker
Azure ai on premises with  dockerAzure ai on premises with  docker
Azure ai on premises with docker
Vishwas N
 
Docker Container Introduction
Docker Container IntroductionDocker Container Introduction
Docker Container Introduction
Innfinision Cloud and BigData Solutions
 
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete MeetupIntroducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Alexandra Karapidaki
 
Container on azure
Container on azureContainer on azure
Container on azure
Vishwas N
 

Similar to Docker 101 : Introduction to Docker and Containers (20)

Docker up and Running For Web Developers
Docker up and Running For Web DevelopersDocker up and Running For Web Developers
Docker up and Running For Web Developers
 
Docker Up and Running for Web Developers
Docker Up and Running for Web DevelopersDocker Up and Running for Web Developers
Docker Up and Running for Web Developers
 
Introduction to Docker and Monitoring with InfluxData
Introduction to Docker and Monitoring with InfluxDataIntroduction to Docker and Monitoring with InfluxData
Introduction to Docker and Monitoring with InfluxData
 
Docker primer and tips
Docker primer and tipsDocker primer and tips
Docker primer and tips
 
Containerization using docker and its applications
Containerization using docker and its applicationsContainerization using docker and its applications
Containerization using docker and its applications
 
Containerization using docker and its applications
Containerization using docker and its applicationsContainerization using docker and its applications
Containerization using docker and its applications
 
DOCKER-PIAIC-SLIDES
DOCKER-PIAIC-SLIDESDOCKER-PIAIC-SLIDES
DOCKER-PIAIC-SLIDES
 
Best Practices for Developing & Deploying Java Applications with Docker
Best Practices for Developing & Deploying Java Applications with DockerBest Practices for Developing & Deploying Java Applications with Docker
Best Practices for Developing & Deploying Java Applications with Docker
 
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
Velocity NYC 2017: Building Resilient Microservices with Kubernetes, Docker, ...
 
Docker on Power Systems
Docker on Power SystemsDocker on Power Systems
Docker on Power Systems
 
Docker presentation
Docker presentationDocker presentation
Docker presentation
 
Getting started with docker (2017)
Getting started with docker (2017)Getting started with docker (2017)
Getting started with docker (2017)
 
Docker 101
Docker 101Docker 101
Docker 101
 
[@NaukriEngineering] Docker 101
[@NaukriEngineering] Docker 101[@NaukriEngineering] Docker 101
[@NaukriEngineering] Docker 101
 
Docker for dev
Docker for devDocker for dev
Docker for dev
 
JOSA TechTalks - Docker in Production
JOSA TechTalks - Docker in ProductionJOSA TechTalks - Docker in Production
JOSA TechTalks - Docker in Production
 
Azure ai on premises with docker
Azure ai on premises with  dockerAzure ai on premises with  docker
Azure ai on premises with docker
 
Docker Container Introduction
Docker Container IntroductionDocker Container Introduction
Docker Container Introduction
 
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete MeetupIntroducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
 
Container on azure
Container on azureContainer on azure
Container on azure
 

Recently uploaded

Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 

Recently uploaded (20)

Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 

Docker 101 : Introduction to Docker and Containers

  • 1. Docker 101 Introduction to Docker and Containers
  • 2. Ashutoshh Singh About Me ashutoshh@linux.com +91-9509957594 linkedin.com/in/ashutoshh ● Chief Technology Officer, AdHoc Networks ● DevOps Consultant ● Research Areas: DevOps, Deep Learning, Neural Networks ● Talks: ○ PyCon India 2017 ○ DevConf India 2018 ● Open Source Contributor: Fedora, Docker and Ansible slashdevops.blogspot.com
  • 3. Agenda ● Why Containers? ● What are Containers? ○ Characteristics ○ Relationship between VMs and Containers. ● Docker ○ About Docker ○ What is Docker? ○ Components of Docker ● Docker Use Cases
  • 5. 1. Software Industry has Changed ● Before: ○ monolithic applications ○ long development cycles ○ single environment ○ slowly scaling up ● Now: ○ de-coupled services ○ fast and iterative improvements ○ multiple environments ○ quickly scaling out
  • 6. 2. Deployment becomes Complex ● Many different stacks: ○ Languages ○ Frameworks ○ Databases ● Many different targets: ○ Individual development environments ○ Pre-production, QA, staging ○ Production: On-premise, Cloud, Hybrid
  • 8. Parallel Problem in Shipping Industry
  • 9. Solution for Shipping Industry: Intermodal Shipping Containers
  • 10. Solution for Software Industry: Container System for Applications
  • 12. ● a Set of Processes sharing a common Kernel’s resources for execution. ● Isolated from the rest of the machine. (can’t see/affect/harm host or other containers) ● Implementation: ○ Uses namespaces to view the system’s privately (network interfaces, PID tree, etc.) ○ Uses cgroups to have metered/limited/reserved resources What are containers?
  • 13.
  • 14. Characteristics: ● Fast ○ Boots in milliseconds ● Lightweight ○ Just a few MBs of intrinsic disk/memory usage ● Portable ○ Migration from one system to another like a VM. ○ Deploy new applications or kill the old ones instantly. ● Secure ○ Considerable level of security to applications, as Containers remain isolated from each other on the guest OS.
  • 15. Relationship between Virtual Machines and Containers
  • 17. About Docker ● Software debuted to the public in Santa Clara at PyCon in 2013. ● Written in: Go ● Products maintained by Docker, Inc. ○ Docker Engine ○ Docker Engine Enterprise ○ Docker Hub ○ Docker Desktop ● Headquarters: San Francisco Solomon Hykes Original Author
  • 18. What is Docker? ● Installing Docker = Installing Docker Engine + Docker CLI ● Docker Engine is a daemon which manages containers, the same way that a hypervisor manages VMs. ● Docker CLI is used to interact with the Docker Engine. ● The Docker CLI and the Docker Engine communicate through an API. ● However, there are many other programs, and client libraries, to use the API.
  • 20.
  • 21. Components of Docker ● Docker Client and Server ● Docker Images ● Docker Registries ● Docker Containers
  • 22. 1. Docker Client and Server ● The Docker Server receives the request from Docker Client, and then, processes it accordingly. ● Docker Server is also known as, Docker Engine. Components of Docker Docker Daemon Docker Container Docker Client Docker ClientDocker Client Docker Host
  • 23. 2. Docker Containers ● Abstraction at the app layer that packages code and dependencies together. ● Multiple containers can run on the same machine and share the OS kernel with other containers. ● Each container runs as isolated processes in user space. Components of Docker
  • 24.
  • 25. 3. Docker Images ● Image = files + metadata ● The file forms the root filesystem of the container. ● The metadata can indicate a number of things, like: ○ the author of the image ○ the command to execute in the container when starting it ○ environment variables to be set ○ etc. ● Images are made of layers, conceptually stacked on top of each other. ● Each layer can add, change, and remove files and/or metadata. ● Images can share layers to optimize disk usage, transfer times, and memory use. ● Images are STATELESS and IMMUTABLE. Components of Docker
  • 26. 3. Docker Images ● There are two methods to build an image: ○ By using a read-only template. ○ Create a Dockerfile (Automated way of building an image). ● The process of building a new image is called: “COMMITING A CHANGE”. Components of Docker
  • 27. 3. Docker Images Components of Docker Ubuntu Base PHP Engine Apache HTTPD PHP Extensions php-with-mysql ● For this image, we start with base image of Ubuntu. ● In the next layer, we add Apache. ● Next, we install the PHP Engine. ● Now, we may add some PHP Extensions (mysql, etc.) ● Then, we tag image with the name ‘php-with-mysql’ ● Once built, this image may serve as a base image for subsequent images.
  • 28. 4. Docker Image Namespaces ● Official Images / Root Namespace ● User (and organizations) images / User Namespace ● Self-Hosted Images / Self-Hosted Namespace Components of Docker
  • 29. 4. Docker Image Namespaces Official Images / Root Namespace ● Root namespace is for official images. They are put by Docker Inc., and generally authored and maintained by third parties. ● Includes images like: ○ Small, "swiss-army-knife" images like busybox. ○ Distro images to be used as bases for builds like ubuntu, fedora, etc. ○ Ready-to-use components and services, like redis, postgresql, etc. Components of Docker
  • 30. 4. Docker Image Namespaces User (and organizations) images / User Namespace ● Holds images for Docker Hub users and organizations. ● e.g. ashutoshh/image ○ Docker Hub user: ashutoshh ○ Image name: image Components of Docker
  • 31. 4. Docker Image Namespaces Self-Hosted Images / Self-Hosted Namespace ● Holds images which are not hosted on Docker Hub, but on third party registries. ● They contain the hostname (or IP address), and optionally the port, of the registry server. ● e.g. registry.example.com:5000/image ○ registry.example.com:5000 : Host and Port of registry ○ image : Image name Components of Docker
  • 33. Everything in Google runs within a container. Over a billion containers in a week! Google is firing up some 3,300 containers every second on an average.
  • 34. Runs containers on-premises. Container instances host about 300 logical services. Nodes are virtualized and running on top of VMware vSphere About 1,000 container instances across 32 nodes.
  • 35. Finnish Railways could increase the density and utilization of its Amazon compute instances, saving on its cloud bill. An Average Cost savings of 50% with Docker Enterprise Edition. About 800 container instances in total (300 are for production). Finnish Railways
  • 36.