Hosting a Docker Container on AWS EC2 Free Tier in under 12 minutes

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

You're a genius Vincent🤩❤. Incase having issues accessing through a different port, simply set to use port 80

yawmintah
Автор

i was today years old until i got to know using scp was best option to share files this easily !! great job!

bhairavkedare
Автор

Straightforward, clear tutorial. This was really helpful, thanks. Subscribed.

GeorgeDonnelly
Автор

Great, quick tutorial. Really appreciate it.

kevon
Автор

thank you so much for this upload! had to make one adjustment to be ablte to run it:
apperently you install docker with this command now:

sudo yum -y install docker

hahaok_
Автор

this video helped me big time! thank you so much! :)

tintintintin
Автор

Great video. I have a question. Why you didn't you use gunicorn and nginx?

ravitejalam
Автор

Just curious, why cannot you dockerize the file locally and upload it to the ec2? I thought docker was supposed to be multi-platform and allow you to dockerize in a different environment?

nickname
Автор

Hi Vincent, Thank for you tutorial. Regarding the files you upload, let's say I have a Django project with many more files. How would you proceed? Thank you !

ericferole
Автор

what about doing this with docker-compose? which would be the steps for it?

najbighouse
Автор

Pretty cool. Thanks. Wouldn't cloning from github be easier?

TheRFreyre
Автор

thanks for the video. I wonder if you could give more details about why you chose to copy the dockerfile and build the image on your ec2, rather than pulling down the image from dockerhub or some other registry and running the container which I would have thought is way more usual approach.

jordanfox
Автор

hello new here was there a prerequisite video before this video explaining the terminal before you got started

MyRonniej
Автор

Really strugling trying to atach a volume of 30gb to this instace, running out of space all the time., any tip?

nicolassuarez
Автор

Be careful with that resource-hungry docker container.

anasouardini
Автор

4:33 Change permission to avoid `sudo`

mihirdutta-DPSi
Автор

I was charged around 0.1$ daily when it create the default VPC

saifeddinesassi
Автор

It builds a container but doesn't show up in the website address, how to fix it ?
solution: docker kill $(docker ps -q)
docker start -ai container_name
or
run a new one from image
sudo docker run -d -p 80:3000 adguard/adguardhome

windws