Containerizing Python web apps with Docker, Flask, Nginx & uWSGI

Поделиться
HTML-код
  • Опубликовано: 5 янв 2025

Комментарии • 195

  • @juansidberry4422
    @juansidberry4422 4 года назад +2

    This is GREAT. You have explained what a developer would actually do step by step to get an app to containerization and production. I can now containerize my applications logically and simply in a very structured manner. THANK YOU! I will now watch the rest of your videos. Really appreciate your work here. Please keep sharing.

  • @davidmakowka922
    @davidmakowka922 4 года назад +1

    This is what you do to get new subscribers. Wish everyone would keep this level of quality of videos. Really like your content

  • @subhadippahari1244
    @subhadippahari1244 4 года назад +1

    nothing to say, except mind-blowing content and teaching style. I try to find this for weeks, at last, got it. keep it up, man.

  • @acortis
    @acortis 5 лет назад +24

    Hello there, great videos (saw the entire series), definetely underrated channel. Keep it up bro.

  • @felixmeyer4360
    @felixmeyer4360 4 года назад +4

    Such an amazing video! just spent 3 hrs banging my head against the wall with apache and I love this process!

  • @davidpaez_co
    @davidpaez_co 4 года назад +5

    17:50 "Building an image" was actually correct. You first build an image and then create and run a container based on that image.
    Great tutorial. Thank you Julian

  • @ericli8461
    @ericli8461 5 лет назад +3

    Very awesome tutorial!! I have checked over many online docs or videos regarding dockerizing the flask & nginx application. Yours is by far the most easy-to-follow and clearly structured one. Thanks!

  • @SamAndrew27
    @SamAndrew27 2 года назад

    Best Docker & Flask tutorial I've found! Thanks dude :D

  • @hotharvey2
    @hotharvey2 4 года назад

    on par with the legend Corey Schafer here. Really helped me nail the overall idea and implementation of docker-compose. Will be donating to you once I get a job lol

  • @danielstadler3390
    @danielstadler3390 4 года назад

    I subscribed because you are criminally under-subbed. Excellent tutorial.

  • @bostevens236
    @bostevens236 4 года назад +1

    I really like how you kept it basic, and EXPLAINED the basics. Well done!

  • @golfstallion1354
    @golfstallion1354 3 года назад

    This was a very useful video. It got me up and running in docker and docker-compose. Thank you for sharing Julian.

  • @DorZ1983
    @DorZ1983 2 года назад

    Best tutorial video I've watched on these subjects. thank you for that.

  • @dannisisgt
    @dannisisgt 3 года назад +1

    Thanks Julian, I watch once and then another time your videos, it help me so much with because they are very informative and fundamentals, I tried to run this example and I found an issue with uwsgi installation in python3.8, after read many blogs finally found a workaround, we can install the module pyuwsgi, please continue with your videos

  • @houmie
    @houmie 4 года назад +2

    Amazing tutorial. To the point, without making it sound too complicated.

  • @sainbayarbattur4348
    @sainbayarbattur4348 4 года назад +1

    Brilliant series of videos. I certainly wish I’d found them earlier! Thanks very much.

  • @experimental_av
    @experimental_av 5 лет назад +1

    hey thanks for the tutorial. i was running into issues with my project and looked at a couple of step by step instructions and yours really stands out as the best.

  • @jussivisapaa1826
    @jussivisapaa1826 2 года назад

    Thanks for this great tutorial! - Straight forward in a good speed. Solved some of my issues with docker/flask

  • @danieldecasse2924
    @danieldecasse2924 2 года назад +1

    cant seem to get UsWGI installed. Im on windows 10. feel like I am something simple. any help is appreciated

  • @gargantuan4696
    @gargantuan4696 5 лет назад +2

    You could link a local volume instead so you don’t have to rebuild the container on every change, simply refresh

  • @ramsjc
    @ramsjc 4 года назад

    Excellent video!! I'm trying to add pulling code from GitHub in the compose file. Thank you so much for getting me started. I was able to build my fully working flask app using mysql as the back end in less than 2 minutes. So that is db, app and nginx in less than 2 minutes! Thank you!

  • @dshefman
    @dshefman 4 года назад

    I too have been trying to find this kind of content for weeks! Thank you.

  • @joc0n647
    @joc0n647 Год назад

    That saved my life. Great Tutorial

  • @xfabiosoft
    @xfabiosoft 5 лет назад +7

    I good improvement is to use docker volumes during development. So you don't have to build new containers every time

  • @zenahrb8316
    @zenahrb8316 4 года назад

    got yourself a new sub. Absolutely stunning delivery!

  • @ramaswamym7309
    @ramaswamym7309 5 лет назад +1

    Thank you so much Julian. It's extremely helpful for me to understand the overall concept. Keep rocking bro :-)

  • @yomajo
    @yomajo 2 года назад

    Yeah, question. Say flask app is hosted in cloud somewhere. Say it's containerized with docker. How do you update app when it's live in production?

  • @eli.malka.youtube
    @eli.malka.youtube 3 года назад

    Julian thanks for the video puts things into order.

  • @BiranchiNarayanNayak
    @BiranchiNarayanNayak 5 лет назад +6

    Can you please make another video on how to run multiple python apps on Docker running on different ports ?

    • @scoa_dev8551
      @scoa_dev8551 4 года назад

      Biranchi Narayan Nayak Just make a new app then port it port 3000 and just reference it.

  • @Virdevir
    @Virdevir 4 года назад

    Outstanding video ! Thank you! Looking forward for new videos.

  • @mauromatsudo1910
    @mauromatsudo1910 3 года назад

    What about if I have static files? Which are the best container to store them?

  • @karimmoradi2003
    @karimmoradi2003 2 года назад

    I am wondering about the volumes which are presents in both services; flask and nginx. In 16:51 we see both services have a "volumes" property. Later when you removed the comments at 16:55 the 'volumes' properties were also disappeared.

  • @srir7249
    @srir7249 3 года назад

    This is such a great video.
    Would you also be able to explain how a container would be able to write into a database server.

  • @joaovictorpereirarocha33
    @joaovictorpereirarocha33 4 года назад +1

    Great Tutorial. I learned a lot of things. Thanks!

  • @moha6243
    @moha6243 Год назад

    Hello Julian, I worked with your tutorial and I have one question how i have to configure the VS-Code Debugger to debug this Setting?

  • @akramsystems
    @akramsystems Год назад

    Keep up the amazing work

  • @anderssegerlund818
    @anderssegerlund818 2 года назад

    Super helpful guide. But is there a way to implement hot-reloading to avoid restarting the container when making an update in the flask app

  • @Ignalvarez
    @Ignalvarez 5 лет назад

    Great job Julian!

  • @noli-timere-crede-tantum
    @noli-timere-crede-tantum 5 лет назад +3

    Thanks for the video. Small clarification: one does not build "containers"; one builds "images" which can be ran as containers. #languageIsKey

    • @cartmanhz
      @cartmanhz 4 года назад

      Exactly, containers built with
      docker run or create.

  • @PREC0GNITAVE
    @PREC0GNITAVE 4 года назад +1

    thanks for this Tutorial it has helped me a lot. What would I need to change if I wanted to run the Nginx container and flask container on separate machines? I assume modifying the nginx.conf file to point at the ip of the flask machine, would uwsgi_pass still be uswgi_pass flask:8080 though?

  • @Notus29
    @Notus29 Год назад

    How would deploy this docker container

  • @solrachincapie
    @solrachincapie 2 года назад

    Excelente Julian... Muchas gracias me ayudaste bastante...

  • @thevijayraj34
    @thevijayraj34 4 года назад

    Actually we can do updating the codes without rebuilding it. Just need to mount the dev folder with port binding in compose XML.

  • @1endell
    @1endell 2 года назад

    Thank you, man! One question: the uwsgi_params file must be in the app folder?

  • @whereisyourjohnie4026
    @whereisyourjohnie4026 4 года назад

    This is a really clear tutorial! Thanks!

  • @sumitasagaonkar2865
    @sumitasagaonkar2865 2 года назад

    --- no python application found, check your startup logs for errors please help

  • @iaroslavdavydiak6439
    @iaroslavdavydiak6439 4 месяца назад

    Thank you Julian!

  • @khlchs2231
    @khlchs2231 4 года назад

    thank you very much , do you have a tutorial on how to deploy multiple models on server ,? , not just one model ,

  • @asiddiqi123
    @asiddiqi123 4 года назад

    So every time I make changes I build it? Why don't you mount volume?

  • @donaldstrubler3870
    @donaldstrubler3870 4 года назад

    Outstanding explanation.

  • @yassinezara9641
    @yassinezara9641 Год назад

    Thanks for this Tuto, it's awesome. the Tutorial link is not working :(

  • @gauravshah8554
    @gauravshah8554 2 года назад

    Thanks for the great tutorial.

  • @opeyemiatoyebi
    @opeyemiatoyebi 4 года назад

    The video is cool. I tried to connect my docker to my local mysql server, but am getting connection refuse. Any suggestion, please

  • @Gn0mH4nT3r
    @Gn0mH4nT3r Год назад

    thank you for your tutorial, it was kind of useful. My question is, how can I put these into one docker image?

    • @assaultx5677
      @assaultx5677 Год назад +1

      I don't know the answer mate but I just want to tell you that he had stop uploading new videos and he's not going to answer your question. You can see his last upload was 3yrs back.
      May be he just quitted the RUclips because of poor response or maybe something else.
      But his videos are really helpful.

    • @Gn0mH4nT3r
      @Gn0mH4nT3r Год назад +1

      @@assaultx5677 well thank you, I solved the issue (with lot of effort), however the good practice the way that is presented in the video (using separate images and containers)

  • @timsavory9718
    @timsavory9718 4 года назад

    Hi Julian, Great Tutorial. Do i really need to add the nginx part if deploying to a Synology NAS which already has nginx web server and reverse proxy set up on? Thanks Tim

  • @vincenandorfi8898
    @vincenandorfi8898 2 года назад

    For me that was an issue: --- no python application found, check your startup logs for errors ---
    Solution: instead of -> "wsgi-file = main.py" used this -> "module = main:app" in the "ini" file.

  • @christiantshizubu8608
    @christiantshizubu8608 3 года назад

    Hey! Julian what's up. I am havin the following error after docker-compose up ==> "uwsgi": executable file not found in $PATH: unknown

  • @BM-uf4pp
    @BM-uf4pp 4 года назад

    how about static files?

  • @robp8468
    @robp8468 4 года назад

    Great tutorial. It would be great if you could make another part on how to deploy this on AWS.

    • @salmankazi5308
      @salmankazi5308 4 года назад

      Hey Did u find a way to upload flask app to aws

  • @bhupenderbhardwaj6991
    @bhupenderbhardwaj6991 2 года назад

    Great content always!!

  • @glanismonteiro5126
    @glanismonteiro5126 5 лет назад

    sir, what key do you press to auto generate dockerfile contents in vs code?

  • @iwoz
    @iwoz 3 года назад

    Great content. Can you please make an advanced version of this topic

  • @angshumanbardhan3729
    @angshumanbardhan3729 3 года назад

    Thank You for making this video

  • @leemerchant9231
    @leemerchant9231 3 года назад

    Seriously good video. Thanks!

  • @roberthmejias
    @roberthmejias 4 года назад

    Awesome!!! its so great, this one works for me ... thanks so much

  • @panzorax.
    @panzorax. 3 года назад

    i can't install uwsgi how i can install ????

  • @scorprog
    @scorprog 2 года назад

    Hi, nice tutorials. Can you a Flask-SQLAlchemy tutorial.

  • @keytetra5093
    @keytetra5093 10 месяцев назад

    Where did Julian go?

  • @victorherrera4527
    @victorherrera4527 3 года назад

    Thank you for the tutorial! Is it possible to run both Nginx and uWSGI in the same container?

  • @kevinmbtbass
    @kevinmbtbass 5 лет назад +3

    Extremely helpful! Would you be interested in making a video on implementing TLS with this kind of architecture?

  • @saurabhramya144
    @saurabhramya144 4 года назад

    uWSGI does get installed on the windows machine. How did you solve that?

  • @leonardomarques9343
    @leonardomarques9343 5 лет назад +2

    i using windows to do and i cant install uwsgi, any tips?

    • @estebanmejia9989
      @estebanmejia9989 4 года назад

      i had the same problem, i solved that problem without copy the env folder. Just install everything globally on the container, linux can install uwsgi, but windows

  • @mehmetaliozer2403
    @mehmetaliozer2403 4 года назад

    awesome tutor, could you deploy a flask app on digitalocean droplet with docker and using a custom domain

  • @iwoz
    @iwoz 4 года назад

    great video.can you make a video for debugging flask inside the container with VSCode

  • @dannys1613
    @dannys1613 5 лет назад

    Can you show us totorial how to setup WSL and VS Code because i cant set the PATHs etc I can only setup the WSL terminal but how i can use my WSL python in vscode or i need to install it on windows too

  • @HugoStone523
    @HugoStone523 Год назад

    Do anyone have the problem that uwsgi error with python3.11?

  • @xanderx8289
    @xanderx8289 5 лет назад +1

    How are you using that Hyper? Is it on top of Powershell but with Unix commands? I don't quite get it.

  • @fortis-lt
    @fortis-lt 5 лет назад

    You help me well! Thank you for the guide!

  • @prabhashswain1878
    @prabhashswain1878 4 года назад +1

    Please sir make a video with django Docker Nginx gunicorn

    • @ishanmodi3583
      @ishanmodi3583 4 года назад

      this is not an appropriate video for learning
      towardsdatascience.com/how-to-deploy-ml-models-using-flask-gunicorn-nginx-docker-9b32055b3d0
      try this link

  • @soumyasen8353
    @soumyasen8353 5 лет назад

    Have a question, how to pass the request header and request body through nginx

  • @israw
    @israw 5 лет назад

    Why do you use containers instead of the normal way to run nginx and python etc?

  • @chandankumaryadav2505
    @chandankumaryadav2505 4 года назад

    While doing docker-compose up, I landed into an issue:- "invalid chmod value: true" for `chmod-socket=true` in app.ini file
    Probable fix:
    chmod-socket = 666 (664 can also work for www-data)
    uid= www-data
    gid= www-data,
    updating the above value in app.ini file fixed my issue

  • @aguspray
    @aguspray 2 года назад

    i have a question, why i am always getting error when install uwsgi with pip in my virtual environment? is it because I use windows?

    • @Millez
      @Millez 2 года назад

      If it's an error when you run "docker build", try adding "RUN apk add python3-dev build-base linux-headers pcre-dev" to the Dockerfile before "RUN pip install uwsgi"

  • @kvicar7419
    @kvicar7419 4 года назад +4

    How did you installed the flask uWSGI? My try ended with Atribute Error: module 'os' has no attribute 'uname'. And we're using exactly the same OS.

    • @juancarlosprieto2872
      @juancarlosprieto2872 4 года назад +3

      Are you using windows? Because you cannot install uWSGI on it (except with cygwin). What i did was skipping the pip install part of the video and only installed flask. Then in my flask docker file i changed the install dependencies to: RUN pip install uwsgi -r requirements.txt and It's working fine for me.
      Also, your localhost will not be where you just usually find it. You have to go to 192.168.99.100
      as it is stated here: stackoverflow.com/questions/42866013/docker-toolbox-localhost-not-working

    • @OmShridhar94
      @OmShridhar94 4 года назад +1

      @@juancarlosprieto2872 dude i love u my man!

  • @b46qqq47
    @b46qqq47 5 лет назад

    Works fine on local machine but on GKE nginx keep crashing

  • @scoa_dev8551
    @scoa_dev8551 4 года назад

    Loved this vid. Thanks!

  • @alainandres1467
    @alainandres1467 4 года назад +1

    Hi , can you help me please? i have this error when i execute docker-compose up : realpath() of app.ini failed: No such file or directory [core/utils.c line 3654]
    thanks !

    • @NikhilPareek92
      @NikhilPareek92 4 года назад

      Two changes you could do:

    • @NikhilPareek92
      @NikhilPareek92 4 года назад

      1) Update the views.py with the code: from app import app
      import os
      @app.route("/")
      def index():
      # Use os.getenv("key") to get environment variables
      app_name = os.getenv("APP_NAME")
      if app_name:
      return f"Hello from {app_name} running in a Docker container behind Nginx!"
      return "Hello from Flask"

    • @NikhilPareek92
      @NikhilPareek92 4 года назад

      2) Stop all the previous containers and restart - docker container prune

  • @juanjosemartinez3762
    @juanjosemartinez3762 4 года назад

    How add letsencrypt ?

  • @muhammad.rafi2012
    @muhammad.rafi2012 4 года назад

    simply awesome , thanks for sharing

  • @exoticgolfholidays
    @exoticgolfholidays 3 года назад

    So what happened to Databases?

  • @marquezdrums
    @marquezdrums 5 лет назад

    I cannot get the nginx server to serve the pages. Anyone else get stuck on this? I just get the default nginx page.

  • @vasylcf
    @vasylcf 5 лет назад

    Thanks, good guide and clear explanation )

  • @chandankumaryadav2505
    @chandankumaryadav2505 4 года назад

    Rest its an awesome video and very intuitive .Thanks Man \m/

  • @Dennis-us6zd
    @Dennis-us6zd 3 года назад

    Hi Julian, thanks a lot for sharing this insightful vid. Could you also please show how this could be done with an additional database service and a front end service? Say a Postgresdb folder and a react folder with typescript code in it? Thanks !

  • @davidsanusi8982
    @davidsanusi8982 5 лет назад

    Hi Julian, This has been a very helpful walkthrough. Can you release a guide for how to combine both nginx and uwsgi in the same container? I know this might not be ideal, but this is what I want to achieve. I am currently taking a look at using supervisord but not been able to get it to work yet.

    • @Notworking1243
      @Notworking1243 5 лет назад

      I found this to be helpful github.com/tiangolo/uwsgi-nginx-flask-docker/

  • @drakhlur1
    @drakhlur1 5 лет назад +1

    Hey man, thanks for the great tutorial. It helped at lot! For the next video, could you please explain how to add a Redis container to act as a queue for the requests coming into the web app?

  • @scotter
    @scotter 4 года назад

    Wow. So thorough and easy to follow. Thank you!!!
    Questions:
    (1) How do we differentiate apps? Am I correct in assuming when each app has its own container, all except ports (and of course our python program itself) can be the same file names, as long as our primary change is to name the root folder "FLASKAPP" something different for each container?
    (2) What if we have different domain names pointing to each different app, how do we direct those domain names to the correct app? Does all this work on a Windows server? I assume so, because I have nginx running on my Windows 2019 server.
    (3) If I already have Postgres running on the same server and my ONE python app running fine using that Postgres server, do you recommend tying Postgres into the docker containers somehow? I assume my Postgres server doesn't have to be containerized?
    THANK YOU!

  • @ronaldronald8819
    @ronaldronald8819 5 лет назад

    I totally enjoyed your tutorial.
    Question: I run docker on a Raspberry pi and like to test remote using the pi's ip instead of the localhost can that be done?

  • @PavelZagalsky
    @PavelZagalsky 5 лет назад +3

    Thanks for the tutorial Julian, this will help a big problem I work on. Shame about the music though, very distracting. Thanks!!

  • @pial2461
    @pial2461 4 года назад

    saved my day mate!