CHChaithra H Rinchaithrahr.hashnode.dev·Nov 29, 2023 · 2 min readDay 20 and Day 21 : Docker Cheat SheetList of the basic Docker commands that work on both Docker Desktop as well as Docker Engine: docker version – Displays detailed information about your Docker CLI and daemon versions. docker system info – Lists data about your Docker environment, inc...00
CHChaithra H Rinchaithrahr.hashnode.dev·Nov 29, 2023 · 2 min readDay 19 : Docker for DevOps EngineersDocker-Volume Docker allows you to create something called volumes. Volumes are like separate storage areas that can be accessed by containers. They allow you to store data, like a database, outside the container, so it doesn't get deleted when the c...00
CHChaithra H Rinchaithrahr.hashnode.dev·Nov 27, 2023 · 2 min readDay 18 : Docker for DevOps EngineersDocker Compose Docker Compose is a tool that was developed to help define and share multi-container applications. With Compose, we can create a YAML file to define the services and with a single command, can spin everything up or tear it all down. ...00
CHChaithra H Rinchaithrahr.hashnode.dev·Nov 27, 2023 · 1 min readDay 17 : Docker Project for DevOps EngineersDockerfile A Dockerfile is like a set of instructions for making a container. It tells Docker what base image to use, what commands to run, and what files to include. For example, if you were making a container for a website, the Dockerfile will tell...00
CHChaithra H Rinchaithrahr.hashnode.dev·Nov 27, 2023 · 1 min readDay 16 : Docker for DevOps EngineersDocker 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,...00