how to run gunicorn on docker

后端 未结 6 479
南旧
南旧 2020-12-29 08:06

I have 2 files that depend on each other when docker is start up. 1 is a flask file and one is a file with a few functions. When docker starts, only the functions file will

6条回答
  •  时光取名叫无心
    2020-12-29 08:51

    I just went through this problem this week and stumbled on your question along the way. Fair to say you either resolved this or changed approaches by now, but for future's sake:

    The command in my Dockerfile is:

    CMD ["gunicorn"  , "-b", "0.0.0.0:8000", "app:app"]
    

    Where the first "app" is the module and the second "app" is the name of the WSGI callable, in your case, it should be _flask from your code although you've some other stuff going on that makes me less certain.

    Gunicorn takes the place of all the run statements in your code, if Flask's development web server and Gunicorn try to take the same port it can conflict and crash Gunicorn.

    Note that when run by Gunicorn, __name__ is not "main". In my example it is equal to "app".

    At my admittedly junior level of both Python, Docker, and Gunicorn the fastest way to debug is to comment out the "CMD" in the Dockerfile, get the container up and running:

    docker run -it -d -p 8080:8080 my_image_name
    

    Hop onto the running container:

     docker exec -it container_name /bin/bash
    

    And start Gunicorn from the command line until you've got it working, then test with curl - I keep a basic route in my app.py file that just prints out "Hi" and has no dependencies for validating the server is up before worrying about the port binding to the host machine.

提交回复
热议问题