PSPratik Shendeinpratikshende.hashnode.dev·Apr 27, 2023 · 10 min readDocker Important interview QuestionsWhat is the Difference between an Image, Container and Engine? An image is a static file that contains all the dependencies and configurations required to run an application. It can be considered as a snapshot of an application. Images can be create...01J
PSPratik Shendeinpratikshende.hashnode.dev·Apr 26, 2023 · 2 min readDocker CheatsheetInstallation of Docker Remove any docker file running on the system using the below command, sudo apt-get remove docker docker-engine docker.io Update the package database, sudo apt-get update Install docker using the below command, sudo apt in...00
PSPratik Shendeinpratikshende.hashnode.dev·Apr 26, 2023 · 3 min readDocker for DevOps Engineers - Part 2Docker-Volume When you run a Docker container, any data that's stored inside the container is lost when the container is stopped or removed. To make the data persistent, you can use Docker volumes. A Docker volume is like a folder on your computer th...00
PSPratik Shendeinpratikshende.hashnode.dev·Apr 24, 2023 · 3 min readDocker for DevOps EngineersDocker Compose Docker Compose is a tool for defining and running multi-container Docker applications. With Docker Compose, you define your application's services, networks, and volumes in a YAML file, and then use the docker-compose command-line tool...00
PSPratik Shendeinpratikshende.hashnode.dev·Apr 17, 2023 · 3 min readDocker Project for DevOps EngineersDockerfile Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run. A Dockerfile is a text file that contains a set of instructions that are used to cr...00