Flask in Docker, some problems here. : flask
www.reddit.com › r › flaskHere is my app.py file: from flask import Flask import os app = Flask(__name__) app.config.from_envvar('FLASK_SETTINGS') @app.route('/') def index(): return 'Index Page' Here is the config file: DEBUG = True HOST = '0.0.0.0' So now to the actual misbehavior, when i start the container i get the following: docker-compose up Starting flaskapp ...