From e094650b867d56e8c2fd74a7ded62acc8a2b07bf Mon Sep 17 00:00:00 2001 From: shubhamKcloud Date: Thu, 7 Sep 2023 18:23:31 +0530 Subject: [PATCH] Shubham | Lightsail Instance --- lightsail.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lightsail.sh diff --git a/lightsail.sh b/lightsail.sh new file mode 100644 index 0000000000..3e79d47da0 --- /dev/null +++ b/lightsail.sh @@ -0,0 +1,24 @@ +sudo su +apt update +snap install docker + +cd /home/ubuntu +curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" +apt install unzip -y +unzip awscliv2.zip +./aws/install +sleep 300 +rm -rf awscliv2.zip + +#with only ECR pull access. TODO: update +AWS_ACCESS_KEY_ID="AKIATUS3MVVJPSRQCB5E" +AWS_SECRET_ACCESS_KEY="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" +AWS_REGION="eu-central-1" + +aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID +aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY + +docker login -u AWS -p $(aws ecr get-login-password --region eu-central-1) 250373516626.dkr.ecr.eu-central-1.amazonaws.com +docker pull 250373516626.dkr.ecr.eu-central-1.amazonaws.com/lightsailinstance:latest +docker images >> test.txt #for testing +docker run -d -p 80:3000 250373516626.dkr.ecr.eu-central-1.amazonaws.com/lightsailinstance:latest \ No newline at end of file