Use Flask server in development

This commit is contained in:
3wc 2021-07-11 12:36:10 +02:00
parent 5cd5126039
commit e4180b8306
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@ services:
- "5000:5000"
environment:
- "POSTGRES_CONNECTION_PARAMETERS=host=db port=5432 user=capsul password=capsul dbname=capsul"
# The image uses gunicorn by default, let's override it with Flask's
# built-in development server
command: ["flask", "run", "-h", "0.0.0.0", "-p", "5000"]
db:
image: "postgres:9.6.5"
volumes: