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
- Host: GitHub
- URL: https://github.com/zackify/python-flask
- Owner: zackify
- Created: 2017-10-24T14:40:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-24T15:10:41.000Z (over 8 years ago)
- Last Synced: 2025-02-14T04:49:46.389Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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