After clone the project you need execute database migrations:
docker-compose run web /usr/local/bin/python django_project/manage.py migrate
Then, create a django-admin superuser:
docker-compose run web /usr/local/bin/python django_project/manage.py createsuperuser --username user --email [email protected]
This command will prompt password, password again, and confirm it.
Last step is collect static files:
docker-compose run web /usr/local/bin/python django_project/manage.py collectstatic --no-input