An open API service indexing awesome lists of open source software.

https://github.com/mdh266/dockerflaskapp

Simple Flask App with Docker and Bootstrap
https://github.com/mdh266/dockerflaskapp

bootstrap docker flask flask-application google-cloud-platform python

Last synced: 7 months ago
JSON representation

Simple Flask App with Docker and Bootstrap

Awesome Lists containing this project

README

          

# Simple Flask App With Docker
------------------------------
A simple "Hello World!" type Flask app that uses Bootstrap.

To use, download Docker and then clone this repository. From the repo directory run:

docker build -t simpleapp .

To run the app run:

docker run -id -p 8080:8080 simpleapp

Then go to the site http://0.0.0.0:8080 to see the page:

![](images/input.png)

When you put in a name and hit enter results in:

![](images/result.png)

Deploying to [Google Cloud App Engine](https://cloud.google.com/appengine) run:

gcloud app deploy

Then go to the `target url`.