Changed to using mongodB via djongo, so modified settings.py, and it is working locally: ``` DATABASES = { 'default': { 'ENGINE': 'djongo', 'NAME': 'my-mongodb', # 'CLIENT': { # 'host': 'your-db-host', # } } } ``` Commented out the following: ``` try: from .local_settings import * except ImportError: pass ``` Successfully migrated to use mongoDB under the hood, but still working with models.py schemas. But do we need to change docker-compose.yaml accordingly? Since all the containers have exited when docker-compose up