Update gunicorn instructions

master
pictuga 2020-08-23 18:59:02 +02:00
parent aa9143302b
commit e76ab2b631
2 changed files with 2 additions and 2 deletions

View File

@ -5,4 +5,4 @@ RUN apk add python3 py3-lxml py3-gunicorn py3-pip git
ADD . /app
RUN pip3 install /app
CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss:cgi_standalone_app
CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss

View File

@ -171,7 +171,7 @@ uwsgi --http :8080 --plugin python --wsgi-file main.py
#### Using Gunicorn
```shell
gunicorn morss:cgi_standalone_app
gunicorn morss
```
#### Using docker