- What's the topic?
- Let's get Started
- How do we start Docker
- Install it first
- Write a docker file
-
FROM node:24.13.0 WORKDIR /app COPY ./src ./src EXPOSE 3000 CMD ["node", "test.js"] - What is the image node:24.13.0
- What's inside of it
- What the WORKDIR and COPY means
- copy the files
- We can hold the EXPOSE 3000
- To run the app we do node test.js
-
- We can run this even in our machine without docker right that means what's the need for Docker?
- Noisy Neighbour Problem
- Why not Virtual Machines
- Resource Allocation separately for separate services
- How it achieves that using cgroups and namespaces
- We can run it in ec2 machines and add load balancing and scale incrementally why not that?
- It also solves works on my machine , It works everywhere
- What to do when need for scaling 1000's of machines in netflix ,google
- That's where Kubernetes comes into play
- How do we start Docker
Last active
January 29, 2026 05:09
-
-
Save sriram-palanisamy-hat/6cc60f174c97aed3031a4342f79cd317 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment







