Here is a docker container with redis service:
redis:
image: redis:latest
ports:
- "6379:6379"
volumes:
- ./redisdata:/data
I enter the container and call redis-cli ping
command with the answer PONG
:
docker-compose exec redish bash
.../data# redis-cli ping
Is it possible to find out how and what kind of data is stored in the redis database?