Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
32 views50 pages

Docker

Uploaded by

sufyan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views50 pages

Docker

Uploaded by

sufyan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 50

Docker Installation on Mac, Windows & Linux

Creating Demo Project on Node and Python


Creating DockerFile
Creating Docker Image
Running Containers
Pre-defined Images
DockerHub
Docker Volumes and Network
Docker Compose
Overview
What is Docker and Why?

What are Containers?

How Container Works?


What is a Docker?
What is a Docker?
Docker is a containerization platform for developing, packaging,
shipping, and running applications.

It provides the ability to run an application in an isolated


environment called a container.
Makes deployment and development efficient.
Why do we need Docker?
Developer
Working Successfully
Let me test
on my
Working machine
Successfully

Tester
Developer
Tester
Developer
Tester
Developer
But it is
working on my
machine

Tester
What is the
solution now?
No worries
We have

Docker
Developer
Packaging
Docker Image

Developer
Tester

Developer
Tester

Developer
How did it
work?
What is a Container?
What is a Container?
A way to package an application with all the necessary
dependencies and configuration.
It can be easily shared
Makes deployment and development efficient.
Container

APP1

Lib, Dependencies,
Tools

Docker Engine

Operating System

Hardware
Container Container

APP1 APP2

Lib, Dependencies, Lib, Dependencies,


Tools Tools

Docker Engine

Operating System

Hardware
Container Container Container

APP1 APP2 APP3

Lib, Dependencies, Lib, Dependencies, Lib, Dependencies,


Tools Tools Tools

Docker Engine

Operating System

Hardware
App1 App2

V14 V16
App1
V14

App2
V16
HOST OS Virtualization
Container Container

APP1 APP2

V14 V16

Docker Engine

Operating System

Hardware
Docker vs VMs
Main components of Docker

DockerFile
Docker Image
Docker Container
Docker Registry
Instance of an Image

It is a simple text file


Container
with instructions to
build an image.

DockerFile Image Container

Single File with all the


dep and lib to run the
Container
program
Docker Registry

A Docker registry is a central repository for storing


and distributing Docker images.
Docker Hub
Or Private Registry

MyAPP v1.0

DockerFile Image
Docker Hub
Or Private Registry

MyAPP v1.0

DockerFile Image MyAPP v1.0


Conclusion:

Docker is a powerful technology that allows developers to create, package, and


deploy applications in containers.
It provides a consistent environment for development, testing, and deployment,
and it's compatible with any platform that supports Docker.
By using Docker, developers can focus on building great applications instead of
worrying about infrastructure and compatibility issues.
Install Docker Engine
Docker Volumes
Container

servers.txt myapp.py

servers.txt
Docker Volumes (bind mount)
Container

servers.txt myapp.py

servers.txt
Communication From/To
Containers
Container

myapp.py

servers.txt
Container

myapp.py

servers.txt

Local Machine
Container Container

myapp.py MySQL
Docker Network
Network: my-net

Container Container

myapp.py MySQL

--network my-net
Docker Compose
Configuration file to manage multiple containers
running on same machine..
Thank
!
u
y !
o
Please Like & SUBSCRIBE

You might also like