SlideShare a Scribd company logo
4
Most read
8
Most read
10
Most read
Docker tutorial
Docker
i
AbouttheTutorial
This tutorial explains the various aspects of the Docker Container service. Starting with
the basics of Docker which focuses on the installation and configuration of Docker, it
gradually moves on to advanced topics such as Networking and Registries. The last few
chapters of this tutorial cover the development aspects of Docker and how you can get up
and running on the development environments using Docker Containers.
Audience
This tutorial is meant for those who are interested in learning Docker as a container
service. This product has spread like wildfire across the industry and is really making an
impact on the development of new generation applications. So anyone who is interested
in learning all the aspects of Docker should go through this tutorial.
Prerequisites
The prerequisite is that the readers should be familiar with the basic concepts of Windows
and the various programs that are already available on the Windows operating system. In
addition, it would help if the readers have some exposure to Linux.
Copyright&Disclaimer
© Copyright 2017 by Tutorials Point (I) Pvt. Ltd.
All the content and graphics published in this e-book are the property of Tutorials Point (I)
Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish
any contents or a part of contents of this e-book in any manner without written consent
of the publisher.
We strive to update the contents of our website and tutorials as timely and as precisely as
possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt.
Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our
website or its contents including this tutorial. If you discover any errors on our website or
in this tutorial, please notify us at contact@tutorialspoint.com.
Docker
ii
TableofContents
About the Tutorial....................................................................................................................................i
Audience..................................................................................................................................................i
Prerequisites............................................................................................................................................i
Copyright & Disclaimer.............................................................................................................................i
Table of Contents....................................................................................................................................ii
1. DOCKER ─ OVERVIEW..........................................................................................................1
2. DOCKER – INSTALLING DOCKER ON LINUX ..........................................................................3
Docker Version......................................................................................................................................10
Docker Info ...........................................................................................................................................11
Docker for Windows..............................................................................................................................12
Docker ToolBox.....................................................................................................................................13
3. DOCKER ─ INSTALLATION ..................................................................................................15
Docker for Windows..............................................................................................................................15
Docker ToolBox.....................................................................................................................................16
Working with Docker Toolbox...............................................................................................................19
4. DOCKER – DOCKER HUB ....................................................................................................22
5. DOCKER ─ IMAGES.............................................................................................................26
Displaying Docker Images......................................................................................................................26
Downloading Docker Images.................................................................................................................27
Removing Docker Images ......................................................................................................................28
docker images -q...................................................................................................................................29
docker inspect.......................................................................................................................................30
6. DOCKER – CONTAINERS.....................................................................................................31
Running a Container..............................................................................................................................31
Docker
iii
Listing of Containers..............................................................................................................................31
docker ps -a...........................................................................................................................................32
docker history .......................................................................................................................................33
7. DOCKER – WORKING WITH CONTAINERS..........................................................................34
docker top.............................................................................................................................................34
docker stop ...........................................................................................................................................35
docker rm..............................................................................................................................................35
docker stats...........................................................................................................................................36
docker attach ........................................................................................................................................37
docker pause.........................................................................................................................................38
docker unpause.....................................................................................................................................39
docker kill..............................................................................................................................................39
Docker – Container Lifecycle .................................................................................................................40
8. DOCKER – DOCKER ARCHITECTURE...................................................................................42
9. DOCKER – CONTAINER AND HOSTS...................................................................................44
Docker Images.......................................................................................................................................44
Running a Container..............................................................................................................................44
Listing All Containers.............................................................................................................................45
Stopping a Container.............................................................................................................................45
10. DOCKER – CONFIGURING DOCKER ....................................................................................46
service docker stop ...............................................................................................................................46
service docker start...............................................................................................................................46
11. DOCKER – CONTAINERS AND SHELLS.................................................................................48
nsenter..................................................................................................................................................49
12. DOCKER – DOCKER FILE.....................................................................................................51
Docker
iv
13. DOCKER – BUILDING DOCKER FILES...................................................................................53
docker build ..........................................................................................................................................53
14. DOCKER – PUBLIC REPOSITORIES.......................................................................................56
docker tag .............................................................................................................................................58
docker push...........................................................................................................................................59
15. DOCKER – MANAGING PORTS ...........................................................................................61
docker inspect.......................................................................................................................................63
16. DOCKER – PRIVATE REGISTRIES .........................................................................................66
17. DOCKER – BUILDING A WEB SERVER DOCKER FILE ............................................................70
18. DOCKER – INSTRUCTION COMMANDS ..............................................................................73
CMD Instruction....................................................................................................................................73
ENTRYPOINT .........................................................................................................................................74
ENV .......................................................................................................................................................75
WORKDIR..............................................................................................................................................77
19. DOCKER – CONTAINER LINKING.........................................................................................79
20. DOCKER – DOCKER STORAGE ............................................................................................81
Data Volumes........................................................................................................................................83
Changing the Storage Driver for a Container .........................................................................................85
Creating a Volume.................................................................................................................................86
Listing all the Volumes ..........................................................................................................................87
21. DOCKER ─ DOCKER NETWORKING.....................................................................................88
Listing All Docker Networks...................................................................................................................88
Inspecting a Docker network.................................................................................................................89
Creating Your Own New Network .........................................................................................................91
Docker
v
22. DOCKER – SETTING NODE.JS..............................................................................................93
23. DOCKER – SETTING MONGODB.........................................................................................96
24. DOCKER – SETTING NGINX...............................................................................................101
25. DOCKER – DOCKER TOOLBOX..........................................................................................105
Running in Powershell.........................................................................................................................106
Pulling Images and Running Containers...............................................................................................106
Kitematic.............................................................................................................................................107
26. DOCKER – SETTING ASP.NET............................................................................................112
Prerequisites.......................................................................................................................................112
Installing the ASP.Net Container .........................................................................................................114
27. DOCKER – DOCKER CLOUD..............................................................................................117
Getting started....................................................................................................................................117
Connecting to the Cloud Provider........................................................................................................118
Setting Up Nodes ................................................................................................................................125
Deploying a Service.............................................................................................................................127
28. DOCKER – LOGGING........................................................................................................129
Daemon Logging..................................................................................................................................129
Container Logging ...............................................................................................................................131
29. DOCKER – DOCKER COMPOSE.........................................................................................132
Docker Compose ─ Installation............................................................................................................132
Creating Your First Docker-Compose File ............................................................................................133
30. DOCKER – CONTINUOUS INTEGRATION...........................................................................136
31. DOCKER – KUBERNETES ARCHITECTURE..........................................................................140
32. DOCKER – WORKING OF KUBERNETES ............................................................................142
Docker
6
Docker is a container management service. The keywords of Docker are develop, ship and
run anywhere. The whole idea of Docker is for developers to easily develop applications, ship
them into containers which can then be deployed anywhere.
The initial release of Docker was in March 2013 and since then, it has become the buzzword
for modern world development, especially in the face of Agile-based projects.
Features of Docker
 Docker has the ability to reduce the size of development by providing a smaller
footprint of the operating system via containers.
 With containers, it becomes easier for teams across different units, such as
development, QA and Operations to work seamlessly across applications.
 You can deploy Docker containers anywhere, on any physical and virtual machines and
even on the cloud.
 Since Docker containers are pretty lightweight, they are very easily scalable.
Components of Docker
1. DOCKER ─ OVERVIEW
Docker
7
Docker has the following components
 Docker for Mac – It allows one to run Docker containers on the Mac OS.
 Docker for Linux - It allows one to run Docker containers on the Linux OS.
 Docker for Windows - It allows one to run Docker containers on the Windows OS.
 Docker Engine – It is used for building Docker images and creating Docker
containers.
 Docker Hub – This is the registry which is used to host various Docker images.
 Docker Compose – This is used to define applications using multiple Docker
containers.
We will discuss all these components in detail in the subsequent chapters.
The official site for Docker is https://www.docker.com/ The site has all information and
documentation about the Docker software. It also has the download links for various operating
systems.
Docker
8
To start the installation of Docker, we are going to use an Ubuntu instance. You can use Oracle
Virtual Box to setup a virtual Linux instance, in case you don’t have it already.
The following screenshot shows a simple Ubuntu server which has been installed on Oracle
Virtual Box. There is an OS user named demo which has been defined on the system having
entire root access to the sever.
To install Docker, we need to follow the steps given below.
Step 1: Before installing Docker, you first have to ensure that you have the right Linux kernel
version running. Docker is only designed to run on Linux kernel version 3.8 and higher. We
can do this by running the following command:
uname
This method returns the system information about the Linux system.
Syntax
uname -a
Options
a – This is used to ensure that the system information is returned.
Return Value
This method returns the following information on the Linux system:
 kernel name
 node name
 kernel release
 kernel version
 machine
 processor
 hardware platform
2. DOCKER – INSTALLING DOCKER ON LINUX
Docker
9
 operating system
Example
uname –a
Output
When we run above command, we will get the following result:
From the output, we can see that the Linux kernel version is 4.2.0-27 which is higher than
version 3.8, so we are good to go.
Step 2: You need to update the OS with the latest packages, which can be done via the
following command:
apt-get
This method installs packages from the Internet on to the Linux system.
Syntax
sudo apt-get update
Options
 sudo - The sudo command is used to ensure that the command runs with root access.
 update - The update option is used ensure that all packages are updated on the Linux
system.
Return Value
None
Example
sudo apt-get update
Docker
10
Output
When we run the above command, we will get the following result:
This command will connect to the internet and download the latest system packages for
Ubuntu.
Step 3: The next step is to install the necessary certificates that will be required to work with
the Docker site later on to download the necessary Docker packages. It can be done with the
following command:
Docker
11
sudo apt-get install apt-transport-https ca-certificates
Step 4: The next step is to add the new GPG key. This key is required to ensure that all data
is encrypted when downloading the necessary packages for Docker.
The following command will download the key with the ID
58118E89F3A912897C070ADBF76221572C52609D from the keyserver hkp://ha.pool.sks-
keyservers.net:80 and adds it to the adv keychain. Please note that this particular key is
required to download the necessary Docker packages.
sudo apt-key adv 
--keyserver hkp://ha.pool.sks-keyservers.net:80 
--recv-keys 58118E89F3A912897C070ADBF76221572C52609D
Docker
12
Step 5: Next, depending on the version of Ubuntu you have, you will need to add the relevant
site to the docker.list for the apt package manager, so that it will be able to detect the
Docker packages from the Docker site and download them accordingly.
 Precise 12.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-precise main
 Trusty 14.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-trusty main
 Wily 15.10 ─ deb https://apt.dockerproject.org/repo ubuntu-wily main
 Xenial 16.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-xenial main
Since our OS is Ubuntu 14.04, we will use the Repository name as “deb
https://apt.dockerproject.org/repo ubuntu-trusty main”
And then, we will need to add this repository to the docker.list as mentioned above.
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main” | sudo tee
/etc/apt/sources.list.d/docker.list
Step 6: Next, we issue the apt-get update command to update the packages on the Ubuntu
system.
Docker
13
Step 7: If you want to verify that the package manager is pointing to the right repository,
you can do it by issuing the apt-cache command.
apt-cache policy docker-engine
In the output, you will get the link to https://apt.dockerproject.org/repo/
Docker
14
Step 8: Issue the apt-get update command to ensure all the packages on the local system
are up to date.
Docker
15
Step 9: For Ubuntu Trusty, Wily, and Xenial, we have to install the linux-image-extra-* kernel
packages, which allows one to use the aufs storage driver. This driver is used by the newer
versions of Docker.
It can be done by using the following command:
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual
Step 10: The final step is to install Docker and we can do this with the following command:
sudo apt-get install –y docker-engine
Here, apt-get uses the install option to download the Docker-engine image from the Docker
website and get Docker installed.
The Docker-engine is the official package from the Docker Corporation for Ubuntu-based
systems.
Docker
16
In the next section, we will see how to check for the version of Docker that was installed.
DockerVersion
To see the version of Docker running, you can issue the following command:
Syntax
docker version
Options
 version – It is used to ensure the Docker command returns the Docker version
installed.
Return Value
The output will provide the various details of the Docker version installed on the system.
Example
Docker
17
sudo docker version
Output
When we run the above program, we will get the following result:
DockerInfo
To see more information on the Docker running on the system, you can issue the following
command:
Syntax
docker info
Options
 info – It is used to ensure that the Docker command returns the detailed information
on the Docker service installed.
Return Value
The output will provide the various details of the Docker installed on the system such as
 Number of containers
 Number of images
Docker
18
 The storage driver used by Docker
 The root directory used by Docker
 The execution driver used by Docker
Example
sudo docker info
Output
When we run the above command, we will get the following result:
DockerforWindows
Docker has out-of-the-box support for Windows, but you need to have the following
configuration in order to install Docker for Windows.
System Requirements
Windows OS Windows 10 64 bit
Docker
19
Memory 2 GB RAM (recommended)
You can download Docker for Windows from: https://docs.docker.com/docker-for-windows/
DockerToolBox
Docker ToolBox has been designed for older versions of Windows, such as Windows 8.1 and
Windows 7. You need to have the following configuration in order to install Docker for
Windows.
System Requirements
Docker
20
Windows OS Windows 7 , 8, 8.1
Memory 2 GB RAM (recommended)
Virtualization This should be enabled.
You can download Docker ToolBox from: https://www.docker.com/products/docker-toolbox
Docker
21
Let’s go through the installation of each product.
DockerforWindows
Once the installer has been downloaded, double-click it to start the installer and then follow
the steps given below.
Step 1: Click on the Agreement terms and then the Install button to proceed ahead with the
installation.
3. DOCKER ─ INSTALLATION
Docker
22
End of ebook preview
If you liked what you saw…
Buy it from our store @ https://store.tutorialspoint

More Related Content

What's hot (18)

PDF
Jquery mobile tutorial
HarikaReddy115
 
PDF
Design pattern tutorial
HarikaReddy115
 
PDF
Intellij idea tutorial
HarikaReddy115
 
PDF
Wordpress tutorial- Excel Range
jasikadogra
 
PDF
Pascal tutorial
HarikaReddy115
 
PDF
C standard library_tutorial
HarikaReddy115
 
PDF
learn wordpress for beginners
Université de djibouti
 
PDF
Asp.net tutorial
HarikaReddy115
 
PDF
Asp.net
rajkumar8081
 
PDF
Ibatis tutorial
HarikaReddy115
 
PDF
Chef tutorial
HarikaReddy115
 
PDF
Gprs tutoial
sushsky1
 
PDF
Mybatis tutorial
Alex Roldán
 
PDF
Behavior driven development_tutorial
HarikaReddy115
 
PDF
Euphoria tutorials
HarikaReddy115
 
PDF
Learn c standard library
Ashoka Vanjare
 
PDF
Book scrum tutorial
Satya Harish
 
PDF
Virtualization2.0 tutorial
Muhammed Hassan M
 
Jquery mobile tutorial
HarikaReddy115
 
Design pattern tutorial
HarikaReddy115
 
Intellij idea tutorial
HarikaReddy115
 
Wordpress tutorial- Excel Range
jasikadogra
 
Pascal tutorial
HarikaReddy115
 
C standard library_tutorial
HarikaReddy115
 
learn wordpress for beginners
Université de djibouti
 
Asp.net tutorial
HarikaReddy115
 
Asp.net
rajkumar8081
 
Ibatis tutorial
HarikaReddy115
 
Chef tutorial
HarikaReddy115
 
Gprs tutoial
sushsky1
 
Mybatis tutorial
Alex Roldán
 
Behavior driven development_tutorial
HarikaReddy115
 
Euphoria tutorials
HarikaReddy115
 
Learn c standard library
Ashoka Vanjare
 
Book scrum tutorial
Satya Harish
 
Virtualization2.0 tutorial
Muhammed Hassan M
 

Similar to Docker tutorial (20)

PDF
Kubernetes tutorial
HarikaReddy115
 
PDF
Dart programming tutorial
HarikaReddy115
 
PDF
Asp.net mvc tutorial
HarikaReddy115
 
PDF
Chef tutorial
HarikaReddy115
 
PDF
keras_tutorial.pdf
Lê Duy Tân
 
PDF
Consul tutorial
HarikaReddy115
 
PDF
Wcf tutorial
Aravindharamanan S
 
PDF
Arduino tutorial
HarikaReddy115
 
PDF
javascript_tutorial.pdf
kaouthar20
 
PDF
D3js tutorial
HarikaReddy115
 
PDF
Learn c programming e-books
Kingsman90
 
PDF
Cprogramming tutorial
1333sample
 
PDF
TUTORIAL DE C
GabrielFVilla15
 
PDF
Learn c programming
Ashoka Vanjare
 
PDF
C Programming Tutorial
suthi
 
PDF
c programming tutorial...................
rtambade13
 
PDF
Cprogramming tutorial
Ankit Dubey
 
PDF
Cprogramming tutorial
عمر عبد
 
PDF
Cprogramming tutorial
31433143
 
PDF
Cprogramming tutorial
Soham Gajjar
 
Kubernetes tutorial
HarikaReddy115
 
Dart programming tutorial
HarikaReddy115
 
Asp.net mvc tutorial
HarikaReddy115
 
Chef tutorial
HarikaReddy115
 
keras_tutorial.pdf
Lê Duy Tân
 
Consul tutorial
HarikaReddy115
 
Wcf tutorial
Aravindharamanan S
 
Arduino tutorial
HarikaReddy115
 
javascript_tutorial.pdf
kaouthar20
 
D3js tutorial
HarikaReddy115
 
Learn c programming e-books
Kingsman90
 
Cprogramming tutorial
1333sample
 
TUTORIAL DE C
GabrielFVilla15
 
Learn c programming
Ashoka Vanjare
 
C Programming Tutorial
suthi
 
c programming tutorial...................
rtambade13
 
Cprogramming tutorial
Ankit Dubey
 
Cprogramming tutorial
عمر عبد
 
Cprogramming tutorial
31433143
 
Cprogramming tutorial
Soham Gajjar
 
Ad

More from HarikaReddy115 (20)

PDF
Dbms tutorial
HarikaReddy115
 
PDF
Data structures algorithms_tutorial
HarikaReddy115
 
PDF
Wireless communication tutorial
HarikaReddy115
 
PDF
Cryptography tutorial
HarikaReddy115
 
PDF
Cosmology tutorial
HarikaReddy115
 
PDF
Control systems tutorial
HarikaReddy115
 
PDF
Computer logical organization_tutorial
HarikaReddy115
 
PDF
Computer fundamentals tutorial
HarikaReddy115
 
PDF
Compiler design tutorial
HarikaReddy115
 
PDF
Communication technologies tutorial
HarikaReddy115
 
PDF
Biometrics tutorial
HarikaReddy115
 
PDF
Basics of computers_tutorial
HarikaReddy115
 
PDF
Basics of computer_science_tutorial
HarikaReddy115
 
PDF
Basic electronics tutorial
HarikaReddy115
 
PDF
Auditing tutorial
HarikaReddy115
 
PDF
Artificial neural network_tutorial
HarikaReddy115
 
PDF
Artificial intelligence tutorial
HarikaReddy115
 
PDF
Antenna theory tutorial
HarikaReddy115
 
PDF
Analog communication tutorial
HarikaReddy115
 
PDF
Amplifiers tutorial
HarikaReddy115
 
Dbms tutorial
HarikaReddy115
 
Data structures algorithms_tutorial
HarikaReddy115
 
Wireless communication tutorial
HarikaReddy115
 
Cryptography tutorial
HarikaReddy115
 
Cosmology tutorial
HarikaReddy115
 
Control systems tutorial
HarikaReddy115
 
Computer logical organization_tutorial
HarikaReddy115
 
Computer fundamentals tutorial
HarikaReddy115
 
Compiler design tutorial
HarikaReddy115
 
Communication technologies tutorial
HarikaReddy115
 
Biometrics tutorial
HarikaReddy115
 
Basics of computers_tutorial
HarikaReddy115
 
Basics of computer_science_tutorial
HarikaReddy115
 
Basic electronics tutorial
HarikaReddy115
 
Auditing tutorial
HarikaReddy115
 
Artificial neural network_tutorial
HarikaReddy115
 
Artificial intelligence tutorial
HarikaReddy115
 
Antenna theory tutorial
HarikaReddy115
 
Analog communication tutorial
HarikaReddy115
 
Amplifiers tutorial
HarikaReddy115
 
Ad

Recently uploaded (20)

PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PDF
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
PDF
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
PDF
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
PPTX
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PPTX
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PPTX
Capitol Doctoral Presentation -July 2025.pptx
CapitolTechU
 
PPTX
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PPTX
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
DOCX
A summary of SPRING SILKWORMS by Mao Dun.docx
maryjosie1
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
Dimensions of Societal Planning in Commonism
StefanMz
 
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
Capitol Doctoral Presentation -July 2025.pptx
CapitolTechU
 
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
A summary of SPRING SILKWORMS by Mao Dun.docx
maryjosie1
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 

Docker tutorial

  • 2. Docker i AbouttheTutorial This tutorial explains the various aspects of the Docker Container service. Starting with the basics of Docker which focuses on the installation and configuration of Docker, it gradually moves on to advanced topics such as Networking and Registries. The last few chapters of this tutorial cover the development aspects of Docker and how you can get up and running on the development environments using Docker Containers. Audience This tutorial is meant for those who are interested in learning Docker as a container service. This product has spread like wildfire across the industry and is really making an impact on the development of new generation applications. So anyone who is interested in learning all the aspects of Docker should go through this tutorial. Prerequisites The prerequisite is that the readers should be familiar with the basic concepts of Windows and the various programs that are already available on the Windows operating system. In addition, it would help if the readers have some exposure to Linux. Copyright&Disclaimer © Copyright 2017 by Tutorials Point (I) Pvt. Ltd. All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish any contents or a part of contents of this e-book in any manner without written consent of the publisher. We strive to update the contents of our website and tutorials as timely and as precisely as possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt. Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our website or its contents including this tutorial. If you discover any errors on our website or in this tutorial, please notify us at [email protected].
  • 3. Docker ii TableofContents About the Tutorial....................................................................................................................................i Audience..................................................................................................................................................i Prerequisites............................................................................................................................................i Copyright & Disclaimer.............................................................................................................................i Table of Contents....................................................................................................................................ii 1. DOCKER ─ OVERVIEW..........................................................................................................1 2. DOCKER – INSTALLING DOCKER ON LINUX ..........................................................................3 Docker Version......................................................................................................................................10 Docker Info ...........................................................................................................................................11 Docker for Windows..............................................................................................................................12 Docker ToolBox.....................................................................................................................................13 3. DOCKER ─ INSTALLATION ..................................................................................................15 Docker for Windows..............................................................................................................................15 Docker ToolBox.....................................................................................................................................16 Working with Docker Toolbox...............................................................................................................19 4. DOCKER – DOCKER HUB ....................................................................................................22 5. DOCKER ─ IMAGES.............................................................................................................26 Displaying Docker Images......................................................................................................................26 Downloading Docker Images.................................................................................................................27 Removing Docker Images ......................................................................................................................28 docker images -q...................................................................................................................................29 docker inspect.......................................................................................................................................30 6. DOCKER – CONTAINERS.....................................................................................................31 Running a Container..............................................................................................................................31
  • 4. Docker iii Listing of Containers..............................................................................................................................31 docker ps -a...........................................................................................................................................32 docker history .......................................................................................................................................33 7. DOCKER – WORKING WITH CONTAINERS..........................................................................34 docker top.............................................................................................................................................34 docker stop ...........................................................................................................................................35 docker rm..............................................................................................................................................35 docker stats...........................................................................................................................................36 docker attach ........................................................................................................................................37 docker pause.........................................................................................................................................38 docker unpause.....................................................................................................................................39 docker kill..............................................................................................................................................39 Docker – Container Lifecycle .................................................................................................................40 8. DOCKER – DOCKER ARCHITECTURE...................................................................................42 9. DOCKER – CONTAINER AND HOSTS...................................................................................44 Docker Images.......................................................................................................................................44 Running a Container..............................................................................................................................44 Listing All Containers.............................................................................................................................45 Stopping a Container.............................................................................................................................45 10. DOCKER – CONFIGURING DOCKER ....................................................................................46 service docker stop ...............................................................................................................................46 service docker start...............................................................................................................................46 11. DOCKER – CONTAINERS AND SHELLS.................................................................................48 nsenter..................................................................................................................................................49 12. DOCKER – DOCKER FILE.....................................................................................................51
  • 5. Docker iv 13. DOCKER – BUILDING DOCKER FILES...................................................................................53 docker build ..........................................................................................................................................53 14. DOCKER – PUBLIC REPOSITORIES.......................................................................................56 docker tag .............................................................................................................................................58 docker push...........................................................................................................................................59 15. DOCKER – MANAGING PORTS ...........................................................................................61 docker inspect.......................................................................................................................................63 16. DOCKER – PRIVATE REGISTRIES .........................................................................................66 17. DOCKER – BUILDING A WEB SERVER DOCKER FILE ............................................................70 18. DOCKER – INSTRUCTION COMMANDS ..............................................................................73 CMD Instruction....................................................................................................................................73 ENTRYPOINT .........................................................................................................................................74 ENV .......................................................................................................................................................75 WORKDIR..............................................................................................................................................77 19. DOCKER – CONTAINER LINKING.........................................................................................79 20. DOCKER – DOCKER STORAGE ............................................................................................81 Data Volumes........................................................................................................................................83 Changing the Storage Driver for a Container .........................................................................................85 Creating a Volume.................................................................................................................................86 Listing all the Volumes ..........................................................................................................................87 21. DOCKER ─ DOCKER NETWORKING.....................................................................................88 Listing All Docker Networks...................................................................................................................88 Inspecting a Docker network.................................................................................................................89 Creating Your Own New Network .........................................................................................................91
  • 6. Docker v 22. DOCKER – SETTING NODE.JS..............................................................................................93 23. DOCKER – SETTING MONGODB.........................................................................................96 24. DOCKER – SETTING NGINX...............................................................................................101 25. DOCKER – DOCKER TOOLBOX..........................................................................................105 Running in Powershell.........................................................................................................................106 Pulling Images and Running Containers...............................................................................................106 Kitematic.............................................................................................................................................107 26. DOCKER – SETTING ASP.NET............................................................................................112 Prerequisites.......................................................................................................................................112 Installing the ASP.Net Container .........................................................................................................114 27. DOCKER – DOCKER CLOUD..............................................................................................117 Getting started....................................................................................................................................117 Connecting to the Cloud Provider........................................................................................................118 Setting Up Nodes ................................................................................................................................125 Deploying a Service.............................................................................................................................127 28. DOCKER – LOGGING........................................................................................................129 Daemon Logging..................................................................................................................................129 Container Logging ...............................................................................................................................131 29. DOCKER – DOCKER COMPOSE.........................................................................................132 Docker Compose ─ Installation............................................................................................................132 Creating Your First Docker-Compose File ............................................................................................133 30. DOCKER – CONTINUOUS INTEGRATION...........................................................................136 31. DOCKER – KUBERNETES ARCHITECTURE..........................................................................140 32. DOCKER – WORKING OF KUBERNETES ............................................................................142
  • 7. Docker 6 Docker is a container management service. The keywords of Docker are develop, ship and run anywhere. The whole idea of Docker is for developers to easily develop applications, ship them into containers which can then be deployed anywhere. The initial release of Docker was in March 2013 and since then, it has become the buzzword for modern world development, especially in the face of Agile-based projects. Features of Docker  Docker has the ability to reduce the size of development by providing a smaller footprint of the operating system via containers.  With containers, it becomes easier for teams across different units, such as development, QA and Operations to work seamlessly across applications.  You can deploy Docker containers anywhere, on any physical and virtual machines and even on the cloud.  Since Docker containers are pretty lightweight, they are very easily scalable. Components of Docker 1. DOCKER ─ OVERVIEW
  • 8. Docker 7 Docker has the following components  Docker for Mac – It allows one to run Docker containers on the Mac OS.  Docker for Linux - It allows one to run Docker containers on the Linux OS.  Docker for Windows - It allows one to run Docker containers on the Windows OS.  Docker Engine – It is used for building Docker images and creating Docker containers.  Docker Hub – This is the registry which is used to host various Docker images.  Docker Compose – This is used to define applications using multiple Docker containers. We will discuss all these components in detail in the subsequent chapters. The official site for Docker is https://www.docker.com/ The site has all information and documentation about the Docker software. It also has the download links for various operating systems.
  • 9. Docker 8 To start the installation of Docker, we are going to use an Ubuntu instance. You can use Oracle Virtual Box to setup a virtual Linux instance, in case you don’t have it already. The following screenshot shows a simple Ubuntu server which has been installed on Oracle Virtual Box. There is an OS user named demo which has been defined on the system having entire root access to the sever. To install Docker, we need to follow the steps given below. Step 1: Before installing Docker, you first have to ensure that you have the right Linux kernel version running. Docker is only designed to run on Linux kernel version 3.8 and higher. We can do this by running the following command: uname This method returns the system information about the Linux system. Syntax uname -a Options a – This is used to ensure that the system information is returned. Return Value This method returns the following information on the Linux system:  kernel name  node name  kernel release  kernel version  machine  processor  hardware platform 2. DOCKER – INSTALLING DOCKER ON LINUX
  • 10. Docker 9  operating system Example uname –a Output When we run above command, we will get the following result: From the output, we can see that the Linux kernel version is 4.2.0-27 which is higher than version 3.8, so we are good to go. Step 2: You need to update the OS with the latest packages, which can be done via the following command: apt-get This method installs packages from the Internet on to the Linux system. Syntax sudo apt-get update Options  sudo - The sudo command is used to ensure that the command runs with root access.  update - The update option is used ensure that all packages are updated on the Linux system. Return Value None Example sudo apt-get update
  • 11. Docker 10 Output When we run the above command, we will get the following result: This command will connect to the internet and download the latest system packages for Ubuntu. Step 3: The next step is to install the necessary certificates that will be required to work with the Docker site later on to download the necessary Docker packages. It can be done with the following command:
  • 12. Docker 11 sudo apt-get install apt-transport-https ca-certificates Step 4: The next step is to add the new GPG key. This key is required to ensure that all data is encrypted when downloading the necessary packages for Docker. The following command will download the key with the ID 58118E89F3A912897C070ADBF76221572C52609D from the keyserver hkp://ha.pool.sks- keyservers.net:80 and adds it to the adv keychain. Please note that this particular key is required to download the necessary Docker packages. sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
  • 13. Docker 12 Step 5: Next, depending on the version of Ubuntu you have, you will need to add the relevant site to the docker.list for the apt package manager, so that it will be able to detect the Docker packages from the Docker site and download them accordingly.  Precise 12.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-precise main  Trusty 14.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-trusty main  Wily 15.10 ─ deb https://apt.dockerproject.org/repo ubuntu-wily main  Xenial 16.04 (LTS) ─ deb https://apt.dockerproject.org/repo ubuntu-xenial main Since our OS is Ubuntu 14.04, we will use the Repository name as “deb https://apt.dockerproject.org/repo ubuntu-trusty main” And then, we will need to add this repository to the docker.list as mentioned above. echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main” | sudo tee /etc/apt/sources.list.d/docker.list Step 6: Next, we issue the apt-get update command to update the packages on the Ubuntu system.
  • 14. Docker 13 Step 7: If you want to verify that the package manager is pointing to the right repository, you can do it by issuing the apt-cache command. apt-cache policy docker-engine In the output, you will get the link to https://apt.dockerproject.org/repo/
  • 15. Docker 14 Step 8: Issue the apt-get update command to ensure all the packages on the local system are up to date.
  • 16. Docker 15 Step 9: For Ubuntu Trusty, Wily, and Xenial, we have to install the linux-image-extra-* kernel packages, which allows one to use the aufs storage driver. This driver is used by the newer versions of Docker. It can be done by using the following command: sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual Step 10: The final step is to install Docker and we can do this with the following command: sudo apt-get install –y docker-engine Here, apt-get uses the install option to download the Docker-engine image from the Docker website and get Docker installed. The Docker-engine is the official package from the Docker Corporation for Ubuntu-based systems.
  • 17. Docker 16 In the next section, we will see how to check for the version of Docker that was installed. DockerVersion To see the version of Docker running, you can issue the following command: Syntax docker version Options  version – It is used to ensure the Docker command returns the Docker version installed. Return Value The output will provide the various details of the Docker version installed on the system. Example
  • 18. Docker 17 sudo docker version Output When we run the above program, we will get the following result: DockerInfo To see more information on the Docker running on the system, you can issue the following command: Syntax docker info Options  info – It is used to ensure that the Docker command returns the detailed information on the Docker service installed. Return Value The output will provide the various details of the Docker installed on the system such as  Number of containers  Number of images
  • 19. Docker 18  The storage driver used by Docker  The root directory used by Docker  The execution driver used by Docker Example sudo docker info Output When we run the above command, we will get the following result: DockerforWindows Docker has out-of-the-box support for Windows, but you need to have the following configuration in order to install Docker for Windows. System Requirements Windows OS Windows 10 64 bit
  • 20. Docker 19 Memory 2 GB RAM (recommended) You can download Docker for Windows from: https://docs.docker.com/docker-for-windows/ DockerToolBox Docker ToolBox has been designed for older versions of Windows, such as Windows 8.1 and Windows 7. You need to have the following configuration in order to install Docker for Windows. System Requirements
  • 21. Docker 20 Windows OS Windows 7 , 8, 8.1 Memory 2 GB RAM (recommended) Virtualization This should be enabled. You can download Docker ToolBox from: https://www.docker.com/products/docker-toolbox
  • 22. Docker 21 Let’s go through the installation of each product. DockerforWindows Once the installer has been downloaded, double-click it to start the installer and then follow the steps given below. Step 1: Click on the Agreement terms and then the Install button to proceed ahead with the installation. 3. DOCKER ─ INSTALLATION
  • 23. Docker 22 End of ebook preview If you liked what you saw… Buy it from our store @ https://store.tutorialspoint