DEV Community

Aadit Unni
Aadit Unni

Posted on

1

Docker Fundamentals

[59/100] #100DaysOfCloud Today, I started learning Docker Fundamentals by Adrian Cantrill. While doing the Free AWS Cloud Project Bootcamp by Andrew Brown, I realized that I needed to know and understand more about Docker and checked out the suggested course.

I learned some basics about Docker and it's Architecture.

  • Docker host or container host is the physical hardware. Containers run on them.
  • On top of this is th host OS.
  • On top of this is a container engine called Docker Engine.
  • By comparison, it is lighter than a hypervisor because it has less to do.
  • Any containers running on the Docker host shares the same OS.
  • Basically, each container runs as a process in that OS which means that containers don't need their own OS.
  • They only need to run the libraries and runtime environment and the application itself and because of this containers are much smaller an lightweight compared to the same application run on an virtual machine.
  • Containers can infect other containers as they are not strongly isolated when they use resources aggressively.

I also installed Docker Desktop which installs dockerd. dockerd is the server side component that manages containers as well as command line and graphical client that can be used to interact with Docker.

GitHub

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay