default processes to 3, update readme

This commit is contained in:
dpedu 2015-06-14 00:04:35 -07:00
parent d740a015bd
commit 2f1dd60a46
2 changed files with 9 additions and 3 deletions

View File

@ -1,7 +1,7 @@
Docker Pythonapp
================
For running uWSGI python3 app
For running uWSGI python3 apps.
**Usage:**
@ -10,8 +10,14 @@ For running uWSGI python3 app
* `testapp/app.py` is the main wsgi file. var `application` must be the wsgi app instance.
* 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
* run container: `docker run -p 80:80 -v /localpath/to/appdir/:/home/python/app/ pythonapp`
**Example app:**
http://gitlab.xmopx.net/dave/example-uwsgi-app/tree/master
**TODO**
* Figure out a way to run apps in "test" mode (I.E. CherryPy / Flask builtin server w/ debug mode)
* Easier way to change uwsgi ini file. (Maybe, override defaults if appdir/uwsgi.ini is present?)
* Multiple apps in a single container?

View File

@ -9,7 +9,7 @@ chdir = /home/python/app/
wsgi-file = /home/python/app/app.py
callable = application
master = true
processes = 1
processes = 3
socket = 127.0.0.1:3330
enable-threads = true
no-threads-wait = true