Go-Web-App-DevopsifiedTest the app on local machine See the output on the browserDec 31, 2024·1 min read
React Django To-do app using Jenkins1. Jenkins Installation on Ubuntu Jenkins requires Java to run. sudo apt update sudo apt install openjdk-11-jdk -y First, add the repository key to your system: sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \ https://pkg.jenkins.io/debian/j...Feb 8, 2024·3 min read
Node To-Do App On DockerDocker is a platform that enables developers to automate the deployment of applications within lightweight, portable containers. These containers package an application and its dependencies, ensuring consistency across different environments. Contain...Jan 13, 2024·3 min read
JAVA App on DockerDocker is a platform that enables developers to automate the deployment of applications within lightweight, portable containers. These containers package an application and its dependencies, ensuring consistency across different environments. Running...Jan 8, 2024·2 min read
Mysql DB container on DockerAs this is a very basic project, we will pull MySQL image from Docker Hub. docker pull mysql:latest run docker images to see downloaded/existing docker images docker images Now, we need to run mysql latest image downloaded from the docker hub. If...Jan 5, 2024·1 min read
TerraWeek Day 3Task 1: Create a Terraform configuration file to define a resource of AWS EC2 instance, Azure storage account, Google Compute Engine, etc. (any one) First, we'll require a provider terraform file for AWS terraform { required_providers { aws = {...Sep 13, 2023·5 min read
TerraWeek Day 2TABLE OF CONTENTS Tasks : Task 1: Familiarize yourself with HCL syntax used in Terraform Task 2: Understand variables, data types, and expressions in HCL Task 3: Practice writing Terraform configurations using HCL syntax Task 1: Familiarize your...Sep 12, 2023·3 min read