Use waitress and fix docker bugs
This commit is contained in:
parent
e78338f168
commit
a4a6457d53
|
@ -10,4 +10,6 @@ COPY . .
|
||||||
|
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
|
|
||||||
CMD ["gunicorn", "--preload", "-w", "4", "-b", "0.0.0.0:5000", "app:app"]
|
STOPSIGNAL SIGTERM
|
||||||
|
|
||||||
|
CMD ["python", "app.py"]
|
||||||
|
|
|
@ -5,8 +5,8 @@ services:
|
||||||
build:
|
build:
|
||||||
context: ../src
|
context: ../src
|
||||||
dockerfile: ../docker/Dockerfile
|
dockerfile: ../docker/Dockerfile
|
||||||
ports:
|
network_mode: host
|
||||||
- 5000:5000
|
stop_signal: SIGTERM
|
||||||
environment:
|
environment:
|
||||||
FLASK_ENV: production
|
FLASK_ENV: production
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
DATABASE=sqlite:///endpoints.db
|
DATABASE=sqlite:///endpoints.db
|
||||||
API_HOST=RoomF7203.local
|
API_HOST=room7200.local
|
||||||
SERVICE_NAME=RoomF7203
|
SERVICE_NAME=room7200
|
||||||
SERVICE_TYPE=_http._tcp.local.
|
SERVICE_TYPE=_http._tcp.local.
|
||||||
SERVICE_IP=192.168.137.1
|
SERVICE_IP=192.168.137.1
|
||||||
SERVICE_PORT=5000
|
SERVICE_PORT=5000
|
14
src/app.py
14
src/app.py
|
@ -1,4 +1,8 @@
|
||||||
|
import signal
|
||||||
|
import sys
|
||||||
|
|
||||||
from flask import Flask, render_template
|
from flask import Flask, render_template
|
||||||
|
from waitress import serve
|
||||||
|
|
||||||
from api import api
|
from api import api
|
||||||
from config import API_HOST, DATABASE_URI
|
from config import API_HOST, DATABASE_URI
|
||||||
|
@ -13,6 +17,14 @@ app.register_blueprint(api)
|
||||||
init_db(app)
|
init_db(app)
|
||||||
|
|
||||||
|
|
||||||
|
def handle_exit(*args):
|
||||||
|
unregister_service()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
signal.signal(signal.SIGTERM, handle_exit)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
def homepage():
|
def homepage():
|
||||||
endpoints = get_endpoints_from_db()
|
endpoints = get_endpoints_from_db()
|
||||||
|
@ -23,6 +35,6 @@ if __name__ == "__main__":
|
||||||
register_service()
|
register_service()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
app.run(host="0.0.0.0", port=5000)
|
serve(app, host="0.0.0.0", port=5000)
|
||||||
finally:
|
finally:
|
||||||
unregister_service()
|
unregister_service()
|
||||||
|
|
Loading…
Reference in New Issue