SlideShare a Scribd company logo
4
Most read
6
Most read
10
Most read
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Do you know the following?
Why We Need
Docker? What Is Docker?
Hands-On
Docker Case-Study
1
4
2
6
Docker Components
5
Docker Example
3
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Why We Need Docker?
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Problems Before Docker
An application works in developer’s laptop but not in testing or production. This is due to difference in computing
environment between Dev, Test and Prod.
Code works
fine in my
laptop
There is some
problem with
the code
Dev Prod
In Dev there can be a software that is upgraded and in
Prod the old version of software might be present
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
The idea behind microservices is that some types of applications become easier to build and maintain when they are
broken down into smaller, composable pieces which work together. Each component is developed separately, and the
application is then simply the sum of its constituent components.
Problems Before Docker
Online
Shopping
Service
Product
Catalog
Cart
Server
Order
Server
Account
Service
Account DB
Product DB
Cart DB
Order DB
For example imagine an online shop with separate
microservices for user-accounts, product-catalog
order-processing and shopping carts
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Developing an application requires starting several of microservices in one machine. So if you are starting five of those
services you require five VMs on that machine.
Virtual Machines for starting
multiple microservices
Developer’s
Laptop
Problems Before Docker
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
How Docker Solves These Problems
You can run several microservices in the same VM by
running various Docker containers for each microservice.
Developer’s
Laptop
Virtual
Machine
Docker
Containers
Provides a consistent computing environment
throughout the whole SDLC.
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
What Is Docker?
• Docker is a tool designed to make it easier to create, deploy, and
run applications by using containers.
• Docker containers are lightweight alternatives to Virtual
Machines and it uses the host OS.
• You don’t have to pre-allocate any RAM in containers.
Container 1 Container 2
App 1
BINS/LIBS
App 2
BINS/LIBS
Docker Engine
Host OS
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker In A Nutshell
Docker
File
Project Code
Docker Image
Docker
Container
Virtual Machine
Docker
Hub
Production
Server
Staging
Server
Container
Container
• Docker file builds a Docker image and that image contains all
the project's code
• You can run that image to create as many docker containers as
you want
• Then this Image can be uploaded on Docker hub, from Docker
hub any one can pull the image and build a container
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker
File Git Repo
Push the code
to Git Repo
Complex Requirements
for a microservice are
written in easy to write
DockerFile
Jenkins
Server
Production
Staging
Testing
• Create complex requirements for a microservice within
an easy-to-write Dockerfile.
• Push the code up to the Git Repo.
• CI server pull it down and build the exact
environment that will be used in production to
run the test suite without needing to configure
the CI server at all.
• Deploy it out to a staging environment for
testers.
• Roll exactly what you had in development,
testing, and staging into production
Docker Example
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Case-Study Indiana University
Problem Statement:
Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
VM
Custom
Script
VM
VM
Applications are deployed in
the VMs using custom scripts
1 • Their environment was optimized for their legacy Java-
based applications.
2
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Case-Study Indiana University
Problem Statement:
Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
3 UI
Business Logic
Data Access
Layer
Database
Monolithic Architecture
MicroserviceMicroserviceMicroservice
UI
Database Database Database
Microservice Architecture
The University wanted to improve the way they architect applications, by moving to a
microservices based architecture for their applications
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Case-Study Indiana University
Problem Statement:
Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
4
Security was needed for student’s data such as SSNs and student health
data.
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Case-Study Indiana University
Solution: Docker Data Center (DDC)
Management
Universal Control Plane
Security
LDAP
Registry Services
Trusted Registry
Orchestration
Swarm
Container Runtime
CS Engine
Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Case-Study Indiana University
Docker
Trusted
Registry
UCP
Web UI
It stores the Docker images
Helps in managing whole cluster from a single
place. Services are deployed using UCP web UI,
using Docker images that are stored in DTR. Host A
Host B
Host C
IT ops teams leverages Universal Control
Plane to provision Docker installed
software on hosts, and then deploy their
applications without having to do a
bunch of manual steps to set up all their
infrastructure.
Solution: Docker Data Center (DDC)
Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Registry
▪ Docker Registry is a storage component for Docker Images
▪ We can store the Images in either Public / Private repositories
▪ Docker Hub is Docker’s very own cloud repository
▪ Control where your images are being stored
▪ Integrate image storage with your in-house development workflow
Why Use Docker Registries?
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Images & Containers
▪ Read Only Template Used To Create Containers
▪ Built By Docker Users
▪ Stored In Docker Hub Or Your Local Registry
Docker Images
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Images & Containers
▪ Read Only Template Used To Create Containers
▪ Built By Docker Users
▪ Stored In Docker Hub Or Your Local Registry
Docker Images Docker Containers
▪ Isolated Application Platform
▪ Contains Everything Needed To Run The Application
▪ Built From One Or More Images
run
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Docker Compose
Docker Compose makes it easier to configure and run applications made up of multiple
containers. For the example: imagine being able to define three containers—one
running a web app, another running postgres, and a third running redis—all in one
YAML file and then running those three connected containers with a single command.
web app
postgres
redis
Docker
Compose
File
You can run these three containers
with a single command
Containers
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Thank You
Questions/Queries/Feedback

More Related Content

What's hot (20)

PDF
Introduction to docker
Instruqt
 
PDF
Introduction to Docker
Aditya Konarde
 
PPTX
Docker Basics
DuckDuckGo
 
PPTX
Docker 101 : Introduction to Docker and Containers
Yajushi Srivastava
 
PPTX
Introduction to Docker
Pubudu Jayawardana
 
PDF
Docker Explained | What Is A Docker Container? | Docker Simplified | Docker T...
Edureka!
 
PPTX
Docker introduction (1)
Gourav Varma
 
PDF
Introduction to Docker
Luong Vo
 
PPT
Docker introduction
Phuc Nguyen
 
PPTX
Docker introduction & benefits
Amit Manwade
 
PPTX
Dockers and containers basics
Sourabh Saxena
 
PDF
Docker in real life
Nguyen Van Vuong
 
PPTX
Docker introduction
dotCloud
 
PDF
Introduction to Docker storage, volume and image
ejlp12
 
PPTX
Docker intro
Oleg Z
 
PDF
Introduction to container based virtualization with docker
Bangladesh Network Operators Group
 
PPTX
Docker and kubernetes
Dongwon Kim
 
PDF
Docker Introduction
MANAOUIL Karim
 
PPTX
Introduction to kubernetes
Rishabh Indoria
 
Introduction to docker
Instruqt
 
Introduction to Docker
Aditya Konarde
 
Docker Basics
DuckDuckGo
 
Docker 101 : Introduction to Docker and Containers
Yajushi Srivastava
 
Introduction to Docker
Pubudu Jayawardana
 
Docker Explained | What Is A Docker Container? | Docker Simplified | Docker T...
Edureka!
 
Docker introduction (1)
Gourav Varma
 
Introduction to Docker
Luong Vo
 
Docker introduction
Phuc Nguyen
 
Docker introduction & benefits
Amit Manwade
 
Dockers and containers basics
Sourabh Saxena
 
Docker in real life
Nguyen Van Vuong
 
Docker introduction
dotCloud
 
Introduction to Docker storage, volume and image
ejlp12
 
Docker intro
Oleg Z
 
Introduction to container based virtualization with docker
Bangladesh Network Operators Group
 
Docker and kubernetes
Dongwon Kim
 
Docker Introduction
MANAOUIL Karim
 
Introduction to kubernetes
Rishabh Indoria
 

Similar to What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps Tools | Edureka (20)

PDF
Docker For Windows | Setting Up Docker On Windows | Edureka
Edureka!
 
PDF
Docker Birthday #3 Slides - Overview
Chris Ciborowski
 
PDF
Docker Birthday #3 - Intro to Docker Slides
Docker, Inc.
 
PDF
Docker Networking | Container Network Model (CNM) | Docker Tutorial For Begin...
Edureka!
 
PPTX
Docker - A Quick Introduction Guide
Mohammed Fazuluddin
 
PDF
Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
Edureka!
 
PPTX
Docker 101 describing basic docker usage
ZiyanMaraikar1
 
PDF
[@NaukriEngineering] Docker 101
Naukri.com
 
PDF
Experts Live Europe 2017 - Why you should care about Docker - an introduction
Marc Müller
 
PPT
Docker_tech_guild ppt.ppt technical guild
AkshayaM79
 
PDF
Docker - What it is and how to get started?
Niko Virtala
 
ODP
DevAssistant, Docker and You
BalaBit
 
PPTX
Webinar : Docker in Production
Newt Global Consulting LLC
 
PDF
ContainerDayVietnam2016: Dockerize a small business
Docker-Hanoi
 
PDF
Build and automate your machine learning application with docker and jenkins
Knoldus Inc.
 
PPTX
Container on azure
Vishwas N
 
PPTX
Docker with WordPress
Imran Sayed
 
PPTX
SS Introduction to Docker
Stephane Woillez
 
PPTX
How to Dockerize Angular, Vue and React Web Apps
Belatrix Software
 
PDF
A curtain-raiser to the container world Docker & Kubernetes
zekeLabs Technologies
 
Docker For Windows | Setting Up Docker On Windows | Edureka
Edureka!
 
Docker Birthday #3 Slides - Overview
Chris Ciborowski
 
Docker Birthday #3 - Intro to Docker Slides
Docker, Inc.
 
Docker Networking | Container Network Model (CNM) | Docker Tutorial For Begin...
Edureka!
 
Docker - A Quick Introduction Guide
Mohammed Fazuluddin
 
Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
Edureka!
 
Docker 101 describing basic docker usage
ZiyanMaraikar1
 
[@NaukriEngineering] Docker 101
Naukri.com
 
Experts Live Europe 2017 - Why you should care about Docker - an introduction
Marc Müller
 
Docker_tech_guild ppt.ppt technical guild
AkshayaM79
 
Docker - What it is and how to get started?
Niko Virtala
 
DevAssistant, Docker and You
BalaBit
 
Webinar : Docker in Production
Newt Global Consulting LLC
 
ContainerDayVietnam2016: Dockerize a small business
Docker-Hanoi
 
Build and automate your machine learning application with docker and jenkins
Knoldus Inc.
 
Container on azure
Vishwas N
 
Docker with WordPress
Imran Sayed
 
SS Introduction to Docker
Stephane Woillez
 
How to Dockerize Angular, Vue and React Web Apps
Belatrix Software
 
A curtain-raiser to the container world Docker & Kubernetes
zekeLabs Technologies
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 

What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps Tools | Edureka

  • 2. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Do you know the following? Why We Need Docker? What Is Docker? Hands-On Docker Case-Study 1 4 2 6 Docker Components 5 Docker Example 3
  • 4. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Problems Before Docker An application works in developer’s laptop but not in testing or production. This is due to difference in computing environment between Dev, Test and Prod. Code works fine in my laptop There is some problem with the code Dev Prod In Dev there can be a software that is upgraded and in Prod the old version of software might be present
  • 5. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING The idea behind microservices is that some types of applications become easier to build and maintain when they are broken down into smaller, composable pieces which work together. Each component is developed separately, and the application is then simply the sum of its constituent components. Problems Before Docker Online Shopping Service Product Catalog Cart Server Order Server Account Service Account DB Product DB Cart DB Order DB For example imagine an online shop with separate microservices for user-accounts, product-catalog order-processing and shopping carts
  • 6. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Developing an application requires starting several of microservices in one machine. So if you are starting five of those services you require five VMs on that machine. Virtual Machines for starting multiple microservices Developer’s Laptop Problems Before Docker
  • 7. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING How Docker Solves These Problems You can run several microservices in the same VM by running various Docker containers for each microservice. Developer’s Laptop Virtual Machine Docker Containers Provides a consistent computing environment throughout the whole SDLC.
  • 8. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING What Is Docker? • Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. • Docker containers are lightweight alternatives to Virtual Machines and it uses the host OS. • You don’t have to pre-allocate any RAM in containers. Container 1 Container 2 App 1 BINS/LIBS App 2 BINS/LIBS Docker Engine Host OS
  • 9. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker In A Nutshell Docker File Project Code Docker Image Docker Container Virtual Machine Docker Hub Production Server Staging Server Container Container • Docker file builds a Docker image and that image contains all the project's code • You can run that image to create as many docker containers as you want • Then this Image can be uploaded on Docker hub, from Docker hub any one can pull the image and build a container
  • 10. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker File Git Repo Push the code to Git Repo Complex Requirements for a microservice are written in easy to write DockerFile Jenkins Server Production Staging Testing • Create complex requirements for a microservice within an easy-to-write Dockerfile. • Push the code up to the Git Repo. • CI server pull it down and build the exact environment that will be used in production to run the test suite without needing to configure the CI server at all. • Deploy it out to a staging environment for testers. • Roll exactly what you had in development, testing, and staging into production Docker Example
  • 11. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Case-Study Indiana University Problem Statement: Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter VM Custom Script VM VM Applications are deployed in the VMs using custom scripts 1 • Their environment was optimized for their legacy Java- based applications. 2
  • 12. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Case-Study Indiana University Problem Statement: Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter 3 UI Business Logic Data Access Layer Database Monolithic Architecture MicroserviceMicroserviceMicroservice UI Database Database Database Microservice Architecture The University wanted to improve the way they architect applications, by moving to a microservices based architecture for their applications
  • 13. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Case-Study Indiana University Problem Statement: Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter 4 Security was needed for student’s data such as SSNs and student health data.
  • 14. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Case-Study Indiana University Solution: Docker Data Center (DDC) Management Universal Control Plane Security LDAP Registry Services Trusted Registry Orchestration Swarm Container Runtime CS Engine Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
  • 15. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Case-Study Indiana University Docker Trusted Registry UCP Web UI It stores the Docker images Helps in managing whole cluster from a single place. Services are deployed using UCP web UI, using Docker images that are stored in DTR. Host A Host B Host C IT ops teams leverages Universal Control Plane to provision Docker installed software on hosts, and then deploy their applications without having to do a bunch of manual steps to set up all their infrastructure. Solution: Docker Data Center (DDC) Sorce: https://www.docker.com/customers/indiana-university-delivers-state-art-it-115000-students-docker-datacenter
  • 16. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Registry ▪ Docker Registry is a storage component for Docker Images ▪ We can store the Images in either Public / Private repositories ▪ Docker Hub is Docker’s very own cloud repository ▪ Control where your images are being stored ▪ Integrate image storage with your in-house development workflow Why Use Docker Registries?
  • 17. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Images & Containers ▪ Read Only Template Used To Create Containers ▪ Built By Docker Users ▪ Stored In Docker Hub Or Your Local Registry Docker Images
  • 18. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Images & Containers ▪ Read Only Template Used To Create Containers ▪ Built By Docker Users ▪ Stored In Docker Hub Or Your Local Registry Docker Images Docker Containers ▪ Isolated Application Platform ▪ Contains Everything Needed To Run The Application ▪ Built From One Or More Images run
  • 19. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Docker Compose Docker Compose makes it easier to configure and run applications made up of multiple containers. For the example: imagine being able to define three containers—one running a web app, another running postgres, and a third running redis—all in one YAML file and then running those three connected containers with a single command. web app postgres redis Docker Compose File You can run these three containers with a single command Containers
  • 20. www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING Thank You Questions/Queries/Feedback