This commit is contained in:
Ske 2018-09-09 22:41:21 +02:00
parent 8692a0dbbf
commit 2fbb3adb08
2 changed files with 15 additions and 1 deletions

View File

@ -31,6 +31,12 @@ services:
restart: always
ports:
- "2939:8080"
environment:
- "DATABASE_USER=postgres"
- "DATABASE_PASS=postgres"
- "DATABASE_NAME=postgres"
- "DATABASE_HOST=db"
- "DATABASE_PORT=5432"
db:
image: postgres:alpine
volumes:

View File

@ -1,3 +1,5 @@
import os
import logging
from aiohttp import web
@ -115,7 +117,13 @@ app.add_routes([
async def run():
app["pool"] = await db.connect()
app["pool"] = await db.connect(
os.environ["DATABASE_USER"],
os.environ["DATABASE_PASS"],
os.environ["DATABASE_NAME"],
os.environ["DATABASE_HOST"],
int(os.environ["DATABASE_PORT"])
)
return app