A simple and easy way to learn Docker containerisation
rahulnagavath7
7 views
5 slides
Sep 26, 2024
Slide 1 of 5
1
2
3
4
5
About This Presentation
It describes the simple and basic commands required for learning and mastering Docker
Size: 746.13 KB
Language: en
Added: Sep 26, 2024
Slides: 5 pages
Slide Content
DOCKER
Content What Is Docker ? How Docker works Docker Architecture
What is Docker? Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools, code, and runtime. Using Docker, you can quickly deploy and scale applications into any environment and know your code will run.
How Docker works Docker works by providing a standard way to run your code. Docker is an operating system for containers. Similar to how a virtual machine virtualizes (removes the need to directly manage) server hardware, containers virtualize the operating system of a server. Docker is installed on each server and provides simple commands you can use to build, start, or stop containers. docker run docker build docker push docker pull docker commit