From e44f7d49cc4e11bb9ecb7a08bb6dc58309ccec03 Mon Sep 17 00:00:00 2001 From: dpedu Date: Sun, 14 Jun 2015 00:10:04 -0700 Subject: [PATCH] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c5cadd..6b7e4f3 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ For running uWSGI python3 apps. * build image: `docker build -t pyapp .` * build a python3 app. for example, in a folder called testapp -* `testapp/app.py` is the main wsgi file. var `application` must be the wsgi app instance. +* `testapp/app.py` is the main wsgi file. var `application` must be a wsgi callable. * testapp/requirements.txt is used by pip to install required modules * app/static will be mapped to http://server.address/static/ * run container: `docker run -p 80:80 -v /localpath/to/appdir/:/home/python/app/ pythonapp`