Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Docker Basics
TOPICS TO BE DISCUSSED
1) Introduction.
2) What is Docker Image and Container?
3) What is the need of Docker/Dockerization?
4) Demo (Creating a mssql-server-linux container)
5) What next?
Introduction
Docker is a containerization platform that packages your application and all
its dependencies together in the form of Containers to ensure that your
application works seamlessly in any environment.
What is Docker Image and Docker Container?
Docker Image can be defined as the blueprint of a container. Moreover it can be
considered as class.
A container is a runnable instance of an Image.
What is the need of Docker/Dockerization?
mssql-server-linux container
Query to run a container:-
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=MyPassword(!)" -e "MSSQL_PID=Express" -p 1445:1433 --
name=MyContainer -d microsoft/mssql-server-linux:latest
What next?
Save the Information
Thanks for your time!!

More Related Content

Docker basics

  • 2. TOPICS TO BE DISCUSSED 1) Introduction. 2) What is Docker Image and Container? 3) What is the need of Docker/Dockerization? 4) Demo (Creating a mssql-server-linux container) 5) What next?
  • 3. Introduction Docker is a containerization platform that packages your application and all its dependencies together in the form of Containers to ensure that your application works seamlessly in any environment.
  • 4. What is Docker Image and Docker Container? Docker Image can be defined as the blueprint of a container. Moreover it can be considered as class. A container is a runnable instance of an Image.
  • 5. What is the need of Docker/Dockerization?
  • 6. mssql-server-linux container Query to run a container:- docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=MyPassword(!)" -e "MSSQL_PID=Express" -p 1445:1433 -- name=MyContainer -d microsoft/mssql-server-linux:latest
  • 7. What next? Save the Information