Yuvraj Thapa Chhetri

Home » Archives for Yuvraj Thapa Chhetri
Docker Basic : Your First Container

Docker Basics: Your First Container Step-by-Step Guide

Introduction If you are managing container deployments without complex CI/CD automation pipelines, navigating the AWS Management Console to set up Amazon Elastic Container Registry (ECR) is the most direct way to configure your image repositories. While public registries like Docker Hub allow quick uploads, enterprise cloud environments demand isolated network access controls and encryption at…

Read More

Building a Fully Automated AWS DevOps Pipeline with GitHub Integration

Introduction Deploying applications manually onto bare-metal or cloud instances introduces severe human error risks, slow release velocity, and operational bottlenecks. While cloud providers offer auto-scaling infrastructure, keeping application code in sync across continuously fluctuating server nodes requires automated orchestration. In this guide, we will engineer an end-to-end continuous deployment (CD) architecture on AWS that bridges…

Read More
automatically copy file between s3 bucket using AWS lambda

Automatically Copy Files Between S3 Buckets Using AWS Lambda

Introduction In modern event-driven cloud architectures, manual data transfers across storage layers introduce operational friction and human error. Automatically replicating payload objects across cloud environments—such as transferring raw uploads to secondary analytical repositories or isolated cross-region backups—is a fundamental serverless design pattern. By combining Amazon S3 Event Notifications with AWS Lambda (powered by Python and…

Read More
Deploy Wordpress Using Docker, ECR & EKS

How to Deploy a WordPress Website using Docker, AWS ECR, and AWS EKS

In today’s cloud-native era, deploying applications in containers is a must-have skill especially for dynamic websites like WordPress. In this tutorial, you’ll learn how to deploy a WordPress website using Docker, push the container image to AWS Elastic Container Registry (ECR), and run it on Amazon EKS (Elastic Kubernetes Service). This approach gives you scalability,…

Read More
docker image push across aws account

Complete Guide: How to Push Docker Images to AWS ECR, Share Across AWS Accounts, and Deploy on Elastic Beanstalk

Container ! Container ! Container ! Well, have you also heard about containers? Wait ! Wait ! I am not talking about shipping containers that carry goods across the oceans. I am talking about Docker containers . Yes, Docker conatiners that has revolutionized how developers package, deploy, and scale applications. Docker the most popular tools…

Read More