基於docker+gunicorn部署sanic項目

基於docker+gunicorn部署sanic項目

源代碼: github.com/ltoddy/Pytho

最近雲服務提供商在打價格戰,我在滴滴雲上花了很少的錢租了一個月的雲伺服器:

公網ip是: 116.85.42.182, 以下我以116.85.42.182這個ip為演示,當你自己在部署的時候請換乘自己的ip地址.

買完伺服器之後,你會得到一個公網ip,你可以通過ssh命令連接上你的伺服器.

ssh dc2-user@116.85.42.182

順便提一句,滴滴雲給你創建的賬戶叫"dc2-user",你需要自己設置root的密碼.

然後安裝docker:

sudo apt-get install docker.io

演示一個最小的sanic-app,來部署一下.

這是項目樹(目錄).

.├── app.py├── Dockerfile└── templates └── index.html1 directory, 3 files

app.py

import osfrom sanic import Sanicfrom sanic.response import htmlfrom sanic.response import HTTPResponsefrom jinja2 import Environment, FileSystemLoaderapp = Sanic(__name__)base_dir = os.path.abspath(os.path.dirname(__file__))templates_dir = os.path.join(base_dir, templates)jinja_env = Environment(loader=FileSystemLoader(templates_dir), autoescape=True)def render_template(template_name: str, **context) -> str: template = jinja_env.get_template(template_name) return template.render(**context)@app.route(/)async def index(request) -> HTTPResponse: return html(render_template(index.html))

這裡的python代碼,用到了sanic框架和jinja2木板引擎,所以帶會需要安裝這兩個依賴.

Dockerfile

FROM taoliu/gunicorn3WORKDIR /codeADD . /codeRUN pip install sanic && pip install jinja2EXPOSE 8080CMD gunicorn app:app --bind 0.0.0.0:8080 --worker-class sanic.worker.GunicornWorker

第一行那裡"FROM taoliu/gunicorn3",由於沒找到合適的Python3的gunicorn的基礎鏡像,所以我自己做了一個,方便所有人使用.

RUN pip install sanic && pip install jinja2 這裡,來安裝那兩個依賴.

CMD gunicorn app:app --bind 0.0.0.0:8080 --worker-class sanic.worker.GunicornWorker 這行,是鏡像運行他所以執行的命令.

templates/index.html

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>ltoddys home</title> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.css"></head><body><div class="container"> <div class="page-header"> <h1>Welcome</h1> </div></div></body></html>

然後把這些文件傳到伺服器上:

scp -r * dc2-user@116.85.42.182:~

然後ssh連上我們的伺服器,去構建我們的docker鏡像(這個過程有些漫長,具體看網速.)

docker build -t sanic-demo .

docker images

來查看一下當前擁有的鏡像

然後後台運行docker鏡像:

docker run -d --restart=always -p 5000:8080 sanic-demo:latest

這時候打開瀏覽器輸入: 116.85.42.182:5000 來看看效果吧.

最後說明一點,去滴滴雲那裡的防火牆規則那裡,添加5000埠的規則.


推薦閱讀:

最簡單的python爬蟲入門
用python爬拉鉤網關於『數據分析』工作的信息為什麼都是空的?
Python數據分析之anaconda安裝和使用
如何看待微軟 Pyjion 的進展以及 CPython 性能優化的未來?
Python 爬蟲實戰(一):使用 requests 和 BeautifulSoup

TAG:Python | Docker | Gunicorn |