Cannot connect to redis in docker and django
I have run a redis container using this command: docker run -d --name redis -p 6379:6379 redis. and I have run my Django app using this command: docker run -it -p 8000:8000 voucher. and my connection redis url is redis://redis:6379/1.…