This is a fork of the Docker Flask example for MLH Localhost Intro to Docker workshops.
This example is host on DockerHub as mlhacks/docker-flask-app. You can download and run it locally with the following command:
$ docker run -p 8888:5000 mlhacks/docker-flask-app
To run this example, you need to build the Docker Image first. To do so, run the following command:
$ docker build -t docker-flask-example .
After you've built the image, you can run it as follows:
$ docker run -d -p 8888:5000 docker-flask-example
The website should now be accessible at http://localhost:8888/.
The original code was released under the Apache License 2.0 by Docker, Inc. That license is included with this code in the LICENSE file.
The modifications to this code are released under the MIT License, copyright Major League Hacking, Inc (READ LICENSE).