Skip to content
This repository was archived by the owner on Apr 20, 2022. It is now read-only.

Files

Latest commit

0e5f3d5 · Dec 21, 2018

History

History

flask-app

Docker Flask Example

This is a fork of the Docker Flask example for MLH Localhost Intro to Docker workshops.

Running the Example

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

Building the Example

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/.

License

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).