Create a ".env" file in root directory of this project. Write following inside:
DEV_WORKING_DIRECTORY=/path/to/my/docker-volumes
PORT_REDICT=6379
Migrate
python manage.py migrate
Create a superuser
python manage.py createsuperuser
Run the docker composition (which contains 1 image: Redict, a drop-in replacement for redis):
docker compose up
After that start this Django project:
python manage.py runserver