Skip to content

Instantly share code, notes, and snippets.

View atulkamble's full-sized avatar
☁️
Azure, AWS, DevOps Training & Consulting

Atul Kamble atulkamble

☁️
Azure, AWS, DevOps Training & Consulting
View GitHub Profile
@atulkamble
atulkamble / docker3ec2dockerwordpressnginx.md
Created September 10, 2023 07:52
docker3ec2dockerwordpressnginx

Task 2) Launch windows type of instance & do rdp connection for it

Task 3) Deploy IIS WebServer on Windows type of EC2 Instance.

Task 4) Deploy nginx server/apache2 server on linux type of instance.

sudo apt update -y
sudo apt install nginx -y
OR 

sudo apt install apache2

@atulkamble
atulkamble / docker2pythonapp-hello-world.md
Last active September 9, 2023 09:00
docker2pythonapp-hello-world

Run python webapp on docker

docker run -p 5000:5000 in28min/hello-world-python:0.0.1.RELEASE

Check following link from web-browser http://localhost:5000

@atulkamble
atulkamble / docker1webapphelloworld.md
Last active September 17, 2023 07:52
docker1webapphelloworld

// To create a Docker image of a simple web application on EC2/Physical Machine

mkdir dockerfiles 
New-Item Dockerfile

OR

touch Dockerfile

Add following content to file

@atulkamble
atulkamble / minikube.md
Last active September 11, 2023 06:28
Azure AD
@atulkamble
atulkamble / ec2.md
Created September 8, 2023 13:47
Welcome file

prequisite

linux, windows 16, 22, 12 server edition

networking - port numbers -- ssh 22 rdp - 3389 http - 80

networking, databases, compute, security - cloud

@atulkamble
atulkamble / scoop.sh
Created September 1, 2023 13:26
Scoop on Powershell | Windows
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
@atulkamble
atulkamble / Azure_Storage_Explorer.txt
Last active July 22, 2023 07:49
Snap & then Azure Storage Explorer INstallation on Redhat
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo dnf upgrade
sudo yum install snapd
sudo systemctl enable --now snapd.socket
sudo ln -s /var/lib/snapd/snap /snap
sudo snap install storage-explorer
@atulkamble
atulkamble / awscli.sh
Last active August 24, 2022 07:08
Install AWS CLI to Linux
sudo curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
ls
unzip awscliv2.zip
sudo ./aws/install
sudo ./aws/install --update
aws --version
@atulkamble
atulkamble / inkscape.sh
Created August 18, 2022 04:47
Inkscape Installation on Ubuntu
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt update
sudo apt install inkscape