Docker
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
What is docker?
Docker creates a container image that needs to be run for an application. Docker enables the user to separate the application so the process of developing which involves building, testing and deploying faster. Docker helps in reducing the time between building and deploying. With the help of docker, more workloads can be run on the same hardware itself .
What is a container?
A container is an executable package that include everything that is needed to run a application.
There are different containers available for different set of tasks or applications and each container can be controlled for it’s own changes that needs to be committed and is also secure. The container will have its own applications for it to run the commands and do the changes.
Advantages of docker
- By using docker, there will be an improved level of performance
- Docker also helps in providing application which are cost-effective.
- Changes can be made easily.
- Data will be secure.
- In docker, there is flexible resource sharing.
Top 10 commands used
- ls
- ps
- docker images
- docker ps -a
- docker start (container id)
- docker exec -it (container id) bash
- docker run -d httpd
- docker create httpd
- docker run -itd ubuntu
- docker inspect (container id)