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

https://github.com/zackify/python-flask

Docker image for python flask development
https://github.com/zackify/python-flask

Last synced: 11 months ago
JSON representation

Docker image for python flask development

Awesome Lists containing this project

README

          

## Get Started

Develop Flask apps with zero configuration. Create a new project with a `docker-compose.yml` like this:

```yml
version: '3'
services:
web:
image: python-flask:0.12
ports:
- 5000:5000
volumes:
- ./src:/src
```

Then simply run:

`docker-compose up` and visit localhost:5000