docker: bugfix to make it work

This commit is contained in:
pedro 2024-09-20 12:27:07 -03:00
parent d491fdd47e
commit ecb0877b36
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ SECRET_KEY = "django-insecure-1p8rs@qf$$l^!vsbetagojw23kw@1ez(qi8^(s0t&#7!wyh!l3
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = config('ALLOWED_HOSTS', default='[]', cast=Csv()
ALLOWED_HOSTS = config('ALLOWED_HOSTS', default='[]', cast=Csv())
# Application definition

View File

@ -4,7 +4,7 @@ services:
build:
dockerfile: docker/devicehub-django.Dockerfile
environment:
- DEBUG: true
- DEBUG=true
- ALLOWED_HOSTS=*
volumes:
- .:/opt/devicehub-django