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.
But i cannot seem to connect to redis here is my error:
redis.exceptions.ConnectionError: Error -2 connecting to redis:6379. Name or service not known.
PS: I'm not using docker-compose