Show number of keys without explicitly displaying them
andrey-helldar opened this issue · 0 comments
andrey-helldar commented
I'm using the Docker version of the admin panel and ran into a problem that in the select of the database selection it shows the number of keys, despite the fact that they are not in the general list below. I leave this instruction for those who will face the same problem and, like me, will not be able to find the answer in the project repository on GitHub.
- You need to copy the
config.sample.inc.php
file and then write the mapping in docker-compose.yml: - Change the value of the
maxkeylen
key in it. I indicated 2048. - Adding file mapping:
services:
redis-webui:
image: 'erikdubbelboer/phpredisadmin:latest'
environment:
- ADMIN_USER=${REDIS_WEBUI_USERNAME}
- ADMIN_PASS=${REDIS_WEBUI_PASSWORD}
- REDIS_1_HOST=${REDIS_WEBUI_CONNECT_HOST}
- REDIS_1_PORT=${REDIS_WEBUI_CONNECT_PORT}
volumes:
- './redis/includes/config.sample.inc.php:/src/app/includes/config.sample.inc.php'
ports:
- "${REDIS_WEBUI_PORT}:80"
networks:
- sail
depends_on:
- redis