ABA. B Satya Jaideepinsatyajai.hashnode.dev·4d ago · 5 min readShell Scripting + Makefile Automation for Docker: Simplify Your Docker WorkflowWhy Use a Makefile? When working with Docker projects, you'll often execute commands like: docker compose build docker compose up -d docker compose down docker system prune -f Typing these repeatedly00
ABA. B Satya Jaideepinsatyajai.hashnode.dev·4d ago · 6 min readMastering AWS EC2 Automation with Shell Scripting: Create EC2 Instances Using AWS CLILearn how to automate Amazon EC2 instance creation using Bash Shell Scripting and AWS CLI. This step-by-step guide covers prerequisites, script explanation, execution, screenshots, and best practices.00
ABA. B Satya Jaideepinsatyajai.hashnode.dev·5d ago · 6 min readAutomating Dockerized Django & Flask Deployments with Shell Scripting on AWS EC2 Introduction Deploying applications manually is a great way to learn, but it quickly becomes repetitive and error-prone. Every deployment usually involves multiple commands: Cloning the repository I00
ABA. B Satya Jaideepinsatyajai.hashnode.dev·Jul 2 · 5 min readShell Scripting in Linux: User Creation, Loops, and Conditional StatementsWhat is Shell Scripting? A shell script is a text file containing Linux commands executed by the shell. Every shell script starts with: #!/bin/bash This line is called the Shebang. It tells Linux to 00
ABA. B Satya Jaideepinsatyajai.hashnode.dev·Jun 23 · 4 min readGit & GitHub: A Beginner's Guide Using Git Bash (Hands-on Tutorial)Step 1: Create Your Project Create a folder for your project. Example: mkdir Github cd Github Create some files. Example: touch dev{1..15}.txt Verify: ls Step 2: Initialize Git Repository Initiali00