Coder Social home page Coder Social logo

Comments (4)

tiangolo avatar tiangolo commented on May 4, 2024 1

You can run an interactive bash session, like:

docker run -it -p 80:80 -e MODULE_NAME="custom_app.custom_main" myimage bash

And inside of it run your Flask application with the Flask command:

FLASK_ENV=development FLASK_APP=hello.py flask run

Have in mind that this is only for debug/development. And it completely overrides Meinheld and Gunicorn. They won't in this case, only your Flask development server. But you can use it during development and then remove it for production.

from meinheld-gunicorn-flask-docker.

jaskipper avatar jaskipper commented on May 4, 2024 1

For others that are looking to run in debug mode from docker-compose, this is working for me. I use this in the docker-compose.override.yml file for development. As @tiangolo mentioned, this completely overrides Meinheld and Gunicorn.

version: '3.5'
services:
  thisapp:
    ports:
      - "80:5000"
    stdin_open: true
    tty: true
    environment:
      - FLASK_APP=app
      - FLASK_ENV=development
    command: /bin/bash -c "flask run --host=0.0.0.0"

FLASK_APP, in my case, is the name of the subfolder under the main "app" folder. My setup is /app/app/__init__.py. There may be a better way, but this works for me.

from meinheld-gunicorn-flask-docker.

tiangolo avatar tiangolo commented on May 4, 2024

Yep, great @jaskipper ! Thanks for sharing it.

from meinheld-gunicorn-flask-docker.

github-actions avatar github-actions commented on May 4, 2024

Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues.

from meinheld-gunicorn-flask-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.