So I am deploying django, postgress and nginx containers via docker-compose and I have an issue that I can\'t seem to figure out.
In order to resolve the following error
Dan Lowe gave a very nice answer, but the entrypoint script was not working for me. The problem is that some "makemigrations" expect your input, for instance "yes"/"no".
You can complement Dan Lowe answer with:
python manage.py makemigrations --noinput
instead of
python manage.py makemigrations
(This works at least for simple "yes"/"no" questions)