add nginx-flask-mysql application sample

Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
Anca Iordache 2020-03-05 17:28:07 +01:00
parent 8bb4e23e28
commit a410c8bc62
7 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,10 @@
FROM python:3.6-alpine3.7
EXPOSE 5000
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/
ENV FLASK_APP hello.py
CMD flask run --host=0.0.0.0

View File

@ -0,0 +1,6 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello world'

View File

@ -0,0 +1,6 @@
click==6.7
Flask==1.0.2
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
Werkzeug==0.14.1

View File

@ -0,0 +1 @@
db-78n9n

View File

@ -0,0 +1,27 @@
version: "3.7"
services:
backend:
build: backend
depends_on:
- db
db:
environment:
MYSQL_DATABASE: example
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/db-password
image: mysql:5.7
restart: always
secrets:
- db-password
volumes:
- db-data:/var/lib/mysql
proxy:
build: proxy
ports:
- 80:80
depends_on:
- backend
volumes:
db-data: {}
secrets:
db-password:
file: db/password.txt

View File

@ -0,0 +1,2 @@
FROM nginx:1.13-alpine
COPY conf /etc/nginx/conf.d/default.conf

View File

@ -0,0 +1,8 @@
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://backend:5000;
}
}