I've spent forever trying to connect my Django container to Redis while using Docker-Compose. After hours of changing Docker and Django configs and trying different ways to run everything, I finally figured out that Redis was broadcasting to the host.
These were the errors I was getting each try:
I finally ended up changing the Django IP config for Redis to the Docker host IP and it worked just fine...
Does anyone know of a way to configure everything so that Django looks for Redis on the internal Docker network rather than the external host?
FYI - I'm a total noob.