From Code to Cluster: Running the 2048 Game on EKSRunning the Classic 2048 Game on Amazon EKS — Complete WalkthroughSep 20, 2025·7 min read
Kubernetes Deployment : A Beginner's GuideA pod is a running specification for running a Container written in yaml manifest. In docker , we usually write a command with arguments to run the container. docker run -d -it -p 9000:9000 -tag rayeez/simple-app:latest --network=host --mountVol=V1 ...Jul 5, 2024·3 min read
Introductory Guide to Kubernetes Architecture1)Docker Vs Kubernetes Kubernetes by default is cluster in nature Kubernetes offers Auto healing Kubernetes offers Auto sacaing K8s offers multiple Enterprise level support like Advance load balancing, Security, Advance Networking, Firewall etc ...Jun 17, 2024·4 min read
Multistage builds in docker and distroless imagesMultistage Builds in Docker A simple docker consists of instructions as shown below: A Dockerfile consists of instructions such as create a base image, create a Working directory, Copy the dependencies and application code in /app directory and then...Jun 15, 2024·3 min read
Understanding Docker Containers: A Beginner's GuideThe first Question arises why there is a need of containers, When there were virtual machines already available 1)Virtualization is an advancement to physical servers whereas containers are advancement to virtualization. 2)Suppose a virtual machine i...Jun 9, 2024·2 min read