devopsbyvinod.hashnode.devDeploying Frontend on AWSWhy we choose AWS ? Netlify and Vercel are excellent for quick deployments of React (or any static frontend apps) because they have built in CI/CD, Ease of use but they’re not always the best choice for every situation because they are very expensive...Sep 12, 2025·4 min read
devopsbyvinod.hashnode.devDocker ComposeWhy do we nedd docker compose Let's imagine you’re running a school project on your computer, and this project needs three things to work A website (frontend) A server (backend to handle logic) A database (Source of truth) Now, imagine each of t...Aug 8, 2025·2 min read
devopsbyvinod.hashnode.devDocker Layers, Volume and NetworksWhat is Docker Layers? Docker layers are the building blocks of Docker images. Each layer represents a set of filesystem changes or instructions from your Dockerfile. When you build a Docker image, each command in the Dockerfile creates a new layer. ...Aug 2, 2025·5 min read
devopsbyvinod.hashnode.devWhat is Docker? A Simple Guide for DevelopersWhat is Docker? Have you ever wondered why Docker containers were created in the first place?Before Docker, developers often faced a major problem, code that worked perfectly on their own computer would suddenly fail when run on a different system, l...Jul 28, 2025·6 min read
devopsbyvinod.hashnode.devUnderstanding SSH Protocol: How to Securely Log Into Your Virtual MachineWhat is SSH protocol ? SSH aka Secure Shell is a cryptographic network protocol that enables secure communication between two systems, typically used for remote administration of virtual machines (VMs). It’s most commonly used to log into remote serv...Jul 27, 2025·2 min read