Compose app skeletons

Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
Anca Iordache
2020-02-13 14:14:36 +01:00
parent 1936fc4fe2
commit 4a619921b9
14 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
version: "3"
services:
web:
image: nginx
volumes:
- ./nginx/nginx.conf:/tmp/nginx.conf
environment:
- FLASK_SERVER_ADDR=backend:9091
command: /bin/bash -c "envsubst < /tmp/nginx.conf > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"
ports:
- 8080:80
depends_on:
- backend
backend:
build: flask
environment:
- FLASK_SERVER_PORT=9091
volumes:
- ./flask:/src
depends_on:
- mongo
mongo:
image: mongo

View File

@@ -0,0 +1,7 @@
FROM python:3.7
WORKDIR /src
COPY . .
RUN pip install -r requirements.txt
CMD ["./server.py"]

View File

@@ -0,0 +1,2 @@
pymongo
flask

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python
import os
from flask import Flask
from pymongo import MongoClient
app = Flask(__name__)
client = MongoClient("mongo:27017")
@app.route('/')
def todo():
try:
client.admin.command('ismaster')
except:
return "Server not available"
return "Hello fom the MongoDB client!\n"
if __name__ == "__main__":
app.run(host='0.0.0.0', port=os.environ.get("FLASK_SERVER_PORT", 9090), debug=True)

View File

@@ -0,0 +1,6 @@
server {
listen 80;
location / {
proxy_pass http://$FLASK_SERVER_ADDR;
}
}