https://hub.docker.com/r/redis/redisinsight



docker run -e http_proxy=http://127.0.0.1:1080 -e https_proxy=http://127.0.0.1:1080 redis/redisinsight:2.70


docker run -e http_proxy=http://127.0.0.1:51799 -e https_proxy=http://127.0.0.1:51799 redis/redisinsight:2.70

docker pull redis/redisinsight:2.70

docker pull redis/redisinsight:latest

Run Redis Insight on Docker
You can install Redis Insight using one of the options described below.

If you do not want to persist your Redis Insight data:


docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest

If you want to persist your Redis Insight data, first attach the Docker volume to the /data path and then run the following command:

docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest -v redisinsight:/data

If the previous command returns a permission error, ensure that the user with ID = 1000 has the necessary permissions to access the volume provided (redisinsight in the command above).

Next, point your browser to http://localhost:5540.

Redis Insight also provides a health check endpoint at http://localhost:5540/api/health/ to monitor the health of the running container.

文档更新时间: 2025-11-02 15:13   作者:admin