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

Поділитися
Вставка
  • Опубліковано 23 жов 2023
  • I walk through how to build and host docker containers on the AWS EC2 free tier. Link to the GitHub Flask docker repo shown in the video: github.com/vastevenson/ec2-do...
  • Наука та технологія

КОМЕНТАРІ • 36

  • @GeorgeDonnelly
    @GeorgeDonnelly 5 місяців тому +5

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

  • @kevon217
    @kevon217 7 місяців тому +3

    Great, quick tutorial. Really appreciate it.

  • @bhairavkedare9074
    @bhairavkedare9074 Місяць тому +3

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

  • @geeekfa3278
    @geeekfa3278 8 місяців тому +1

    You are awesome Vincent

  • @hahaok_
    @hahaok_ 7 місяців тому +11

    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

    • @najbighouse
      @najbighouse 7 місяців тому +1

      thanks!! wasn't able to do it with the sudo amazon-linux-extras install docker

    • @hahaok_
      @hahaok_ 7 місяців тому

      im glad i could help someone with my comment!
      @@najbighouse

    • @thanhannguyen2565
      @thanhannguyen2565 12 днів тому

      thank you, you save my day

  • @tintintintin576
    @tintintintin576 4 місяці тому

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

  • @cooperfield45
    @cooperfield45 4 місяці тому

    very helpful tutorial! thanks man

  • @ericferole7972
    @ericferole7972 8 місяців тому +3

    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 !

  • @user-hc2ep3bn7c
    @user-hc2ep3bn7c 8 місяців тому

    Hey man. Thanks for this.

  • @najbighouse
    @najbighouse 7 місяців тому +2

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

  • @ravitejalam
    @ravitejalam 7 місяців тому

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

  • @uzzielperez4316
    @uzzielperez4316 5 місяців тому

    Thanks very much for this!

  • @nickname8668
    @nickname8668 2 місяці тому +2

    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?

  • @windws7137
    @windws7137 Місяць тому

    Thank you, amazing tutorial, based

  • @krish4659
    @krish4659 4 місяці тому

    Thanks ! that was helpful

  • @jordanfox3782
    @jordanfox3782 8 місяців тому +1

    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.

    • @VincentStevenson
      @VincentStevenson  8 місяців тому

      Good question - my main reason was to keep it on the free tier and stay simple enough for a relatively short video. But yes, for a more practical setup, using a container registry is better and I would do that.

  • @TheRFreyre
    @TheRFreyre 6 місяців тому +1

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

  • @nicolassuarez2933
    @nicolassuarez2933 2 місяці тому

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

  • @tomstalley3179
    @tomstalley3179 6 місяців тому

    Thank you!

  • @MyRonniej
    @MyRonniej 2 місяці тому

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

  • @MisterRyanW
    @MisterRyanW 3 місяці тому

    Thank you!!!!!!!!

  • @eternalio1729
    @eternalio1729 7 місяців тому +1

    hey what ide do you use?

  • @anythingforclicks
    @anythingforclicks 6 місяців тому +2

    I’m so confused 😞

  • @anasouardini
    @anasouardini 5 місяців тому +7

    Be careful with that resource-hungry docker container.

  • @mihirdutta-DPSi
    @mihirdutta-DPSi 8 місяців тому

    4:33 Change permission to avoid `sudo`

    • @muhammadhadziqrazin7213
      @muhammadhadziqrazin7213 7 місяців тому

      yes and perhaps you should re-connect to the instance to make it works!

  • @saifeddinesassi2782
    @saifeddinesassi2782 5 місяців тому +1

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

  • @windws7137
    @windws7137 2 місяці тому

    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

    • @windws7137
      @windws7137 2 місяці тому

      These are the commands
      sudo yum upgrade
      sudo amazon-linux-extras install docker -y
      sudo service docker start
      sudo usermod -a -G docker $USER
      Disable Systemd resolver:
      sudo systemctl stop systemd-resolved
      sudo systemctl disable systemd-resolved
      docker run --name adguardhome\
      --restart unless-stopped\
      -v /my/own/workdir:/opt/adguardhome/work\
      -v /my/own/confdir:/opt/adguardhome/conf\
      -p 53:53/tcp -p 53:53/udp\
      -p 67:67/udp\
      -p 80:80/tcp -p 443:443/tcp -p 443:443/udp -p 3000:3000/tcp\
      -p 853:853/tcp\
      -p 784:784/udp -p 853:853/udp -p 8853:8853/udp\
      -p 5443:5443/tcp -p 5443:5443/udp\
      -d adguard/adguardhome
      It doesn't show up int he IP address