27
loading...
This website collects cookies to deliver better user experience
sudo su
yum update -y
yum install docker git -y
systemctl start docker
usermod -a -G docker ec2-user
systemctl enable docker
git clone https://github.com/AWS-User-Group-Jaipur-Rajasthan/OSTechConf21.git
cd OSTechConf21/contests/learn-and-implement/
sed -i 's/I am/AWS/g' learn/index.html
Note: Don't forget to replace AWS with your name like :-
$ sed -i 's/I am/Elon Musk/g' learn/index.html
docker build -t 'ostechconf21' .
docker run -p 80:80 -d ostechconf21
Congratulations !! If you can see your webpage with your name as above screenshot.
27