docker-compose: fix missing DATABASE_USER for layerscelery service

Without this, celery tasks were attempting to connect with the default
user (root) and failing because the passwords are different.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2019-04-05 14:59:24 +13:00
parent 4abd0174fa
commit 69fe84b678

View File

@ -65,6 +65,7 @@ services:
- layersmeta:/opt/workdir
environment:
#- "SECRET_KEY=<set this here>"
- "DATABASE_USER=layers"
- "DATABASE_PASSWORD=testingpw"
- "DATABASE_HOST=layersdb"
- "RABBITMQ_DEFAULT_USER=guest"