I set up with docker-compose a redis container and a node app which uses the redis DB.
All works but I didn't mount any volume so I can't access the data of the redis DB from the host.
I also tried to deplou a container with another node app which tries to connect the redis DB but I can't connect to the redis client Error: Redis connection to redis:6379 failed
I don't want to docker-compose down
the container because the redis data will be lost
Yes, I'm new to the Docker paradox