From 6c7862ba42adc217ec43352c5e7dabb53b55367e Mon Sep 17 00:00:00 2001 From: RainSun Date: Sat, 4 Apr 2020 08:46:45 +0800 Subject: [PATCH] support docker --- Dockerfile | 9 +++++++++ coc.py | 5 ++--- go.sh | 3 +++ gunicorn.conf.py | 2 +- lib/db.py | 2 +- requirements.txt | 18 ++++++++++++++++++ test,py | 11 +++++++++++ 7 files changed, 45 insertions(+), 5 deletions(-) create mode 100644 Dockerfile create mode 100644 go.sh create mode 100644 requirements.txt create mode 100644 test,py diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..618438a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.7-alpine + +COPY requirements.txt /app/requirements.txt +WORKDIR /app +RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple +COPY . /app + +# ENTRYPOINT ["sh"] +# CMD ["go.sh"] \ No newline at end of file diff --git a/coc.py b/coc.py index 9d5be6f..95c2114 100644 --- a/coc.py +++ b/coc.py @@ -79,6 +79,5 @@ def miss(e): return redirect('/api') # 本地运行启动 -if __name__ == '__main__': - app.debug = True - app.run() \ No newline at end of file +if __name__ == '__main__': + app.run(host="0.0.0.0", debug=True, port="80") \ No newline at end of file diff --git a/go.sh b/go.sh new file mode 100644 index 0000000..1102510 --- /dev/null +++ b/go.sh @@ -0,0 +1,3 @@ +#!/bin/sh +echo start +gunicorn coc:app -c gunicorn.conf.py \ No newline at end of file diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 9a1b3d5..802e13d 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -2,7 +2,7 @@ workers = 4 # 监听内网端口5000【按需要更改】 # coc -bind = '127.0.0.1:5003' +bind = '0.0.0.0:80' # beta # bind = '127.0.0.1:5005' # 设置守护进程【关闭连接时,程序仍在运行】 diff --git a/lib/db.py b/lib/db.py index 1443c6f..edca19f 100644 --- a/lib/db.py +++ b/lib/db.py @@ -6,7 +6,7 @@ setting = 'development' # 获取数据集 def col(arg): - conn = MongoClient('mongodb://coc:qlSfefSor5@localhost:12236/coc') + conn = MongoClient('mongodb://coc:qlSfefSor5@mongo:27017/coc') if setting == 'development': arg += '_test' if arg == 'lost': diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7248c1a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +beautifulsoup4==4.8.2 +bs4==0.0.1 +certifi==2019.11.28 +chardet==3.0.4 +Click==7.0 +Flask==1.1.1 +Flask-Cors==3.0.8 +gunicorn==20.0.4 +idna==2.8 +itsdangerous==1.1.0 +Jinja2==2.10.3 +MarkupSafe==1.1.1 +pymongo==3.10.1 +requests==2.22.0 +six==1.14.0 +soupsieve==1.9.5 +urllib3==1.25.7 +Werkzeug==0.16.0 diff --git a/test,py b/test,py new file mode 100644 index 0000000..b563e9b --- /dev/null +++ b/test,py @@ -0,0 +1,11 @@ +import math +a = math.pow(12.09, 2) +print(a) +b = a / 10 +print(b) +c = 3330.97 - b +print(c) +d = math.sqrt(c) +print(d) +e = d / 9 +print(e)