Old Branch

Flask - uwsgi - Nginx 와 docker-compose를 사용해 서버를 만들자

woolbro 2020. 7. 4. 15:58
반응형

NGINX 와 uWsgi서버를 함께 사용한 Flask 서버를 Docker로 만들어 봅시다.

이전에 NGINX, uWsgi, Flask가 묶여있는 Dockerfile이 있었다.

그 도커파일을 사용한다면, 일일히 세팅을 하지 않아도 한번에 작업을 할 수 있는 것이 큰 장점이었다.

이번에는 각각의 파일을 따로 만들어 작업하는 방법을 소개 해 보려고 한다.

Nginx + uWsgi + Flask with docker-compose

예제 다운로드

$ git clone https://github.com/paullee714/flask-projects.git

Project Structure

flask-nginx-uwsgi-Docker
├── docker-compose.yml
├── flask
│   ├── Dockerfile
│   ├── app.py
│   ├── requirements.txt
│   ├── route
│   ├── templates
│   └── uwsgi.ini
├── nginx
│   ├── Dockerfile
│   └── nginx.conf
└── venv

Set Up with..?

  • Docker를 사용해서 Flask와 uWsgi를 만들어주기
  • Nginx서버를 Docker로 만들어주기
  • docker-compose를 사용해서 생성된 Docker파일들을 하나로 묶어주기

set virtualenv

$ pip3 install virtualenv
$ virtualenv venv
$ source venv/bin/activate
(venv) $ pip install flask uwsgi
(venv) $ pip install freeze > requirements.txt

Docker로 Flask와 uWsgi 세팅하기

Flask uwsgi

Flask와 uwsgi는 socket으로 통신, uwsgi와 외부는 8080으로 통신 할 수 있도록 설정 해 주자

NGINX%20uWsgi%20Flask%20with%20Docker%2048d2df41a6a84f099047d31aa56db76d/Untitled.png

Project Structure

flask
├── Dockerfile
├── app.py
├── requirements.txt
├── route
│   ├── __init__.py
│   └── app_route.py
├── templates
│   └── index.html
└── uwsgi.ini

app.py

from flask import Flask
from route.app_route import app_route

app = Flask(__name__)

app.register_blueprint(app_route)

if __name__ == '__main__':
    app.run(host='0.0.0.0')

uwsgi.ini

[uwsgi]
wsgi-file = app.py
callable = app
socket = :8080
processes = 4
threads = 2
master = true
vacum = true
chmod-socket = 660
die-on-term = true

route/app_route.py

from flask import Blueprint, render_template

app_route = Blueprint('first_route',__name__)

@app_route.route('/')
def index():
    return render_template('index.html')

requirements.txt

click==7.1.2
Flask==1.1.2
itsdangerous==1.1.0
Jinja2==2.11.2
MarkupSafe==1.1.1
uWSGI==2.0.19.1
Werkzeug==1.0.1

templates/index.html

<html>
    <head>
        <title>flask Docker</title>
    </head>
</html>
<body>
    <h5>
        this is index pages!
    </h5>
</body>

Docker

FROM python:3

WORKDIR /app

ADD . /app
RUN pip install -r requirements.txt

CMD ["uwsgi","uwsgi.ini"]

Docker-Nginx

Nginx

Nginx가 통신 할 수 있는 port를 8080, 5000으로 열어주었다.

Project Structure

nginx
├── Dockerfile
└── nginx.conf

nginx.conf

server {

    listen 5000;

    location / {
        include uwsgi_params;
        uwsgi_pass flask:8080;
    }
}

Dockerfile

FROM nginx

RUN rm /etc/nginx/conf.d/default.conf

COPY nginx.conf /etc/nginx/conf.d/

Wrap up Dockerfile

docker-compose.yml

version: "3.7"

services: 
    flask:
        build: ./flask
        container_name: flask
        restart: always
        environment: 
            - APP_NAME=FlaskTest
        expose:
            - 8080

    nginx:
        build: ./nginx
        container_name: nginx
        restart: always
        ports:
            - "5000:5000

Run docker-compose file

$ docker-compose up -d --build

완전 잘된다. 이제 덧붙일 개발을 시작해봐야겠습니다.