Skip to content

Tag: flask

Minimal Flask app unreachable from Docker container

I have a very simple flask service that I’m trying to run inside a docker container. I used python to implement a minimal application that is working fine on my Windows, but isn’t reachable when inside a Docker container. I tried the common fix of setting –host=0.0.0.0 (tried multiple ways),…

Load data from Flask/Python to HTML textarea

I am trying to send data from Python / Flask to an HTML form textarea but need some help. responses.html is shown below. A portion of app.py is shown below: I would like to display any previously recorded responses in the response textarea of responses.html while preserving the placeholder when no previous re…