๐Ÿš€ Understanding Docker

Abheeshta PAbheeshta P
2 min read
  • Previously, developers packaged code with a handbook to guide installation.

  • Ops teams manually installed software based on these instructions, leading to:

    • Manual errors

    • Time-consuming setups

    • Docker eliminates these issues by bundling code with its working environment, ensuring it runs on any OS.

๐Ÿ› ๏ธ How Docker Helps

  • Packages everything (code, dependencies, configurations) into Docker images.

  • Ensures consistency across environments.

  • Helps maintain multiple versions of the same software easily.

  • A Docker artifact includes:

    • The application

    • The command to initialize it

    • A defined entry point

โšก Running Docker Applications

  • A Docker image is executed on a server using a Docker command.

  • Docker must be installed on the server to run these images.

๐Ÿ†š Virtualization vs Containers

AspectVirtual Machines (VMs)Docker Containers
KernelEach VM has its own OS kernelUses the host's kernel
Resource UsageHeavy โ€“ full OS virtualizationLightweight โ€“ only the app layer
SpeedSlower due to full OS bootupFaster as it runs on the host
CompatibilityCan run different OSesLimited to the same OS kernel

๐Ÿ—๏ธ Docker on Different OSes

  • Originally built for Linux.

  • Docker Desktop on Windows/macOS uses a VM to simulate a Linux environment.

Thanks to linkedin learning and beloved youtube!!

1
Subscribe to my newsletter

Read articles from Abheeshta P directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Abheeshta P
Abheeshta P

I am a Full-stack dev turning ideas into sleek, functional experiences ๐Ÿš€. I am passionate about AI, intuitive UI/UX, and crafting user-friendly platforms . I am always curious โ€“ from building websites to diving into machine learning and under the hood workings โœจ. Next.js, Node.js, MongoDB, and Tailwind are my daily tools. I am here to share dev experiments, lessons learned, and the occasional late-night code breakthroughs. Always evolving, always building.