How to install Redis Insight on Docker
Redis Insight |
---|
This tutorial shows how to install Redis Insight on Docker so you can use Redis Insight in development. See a separate guide for installing Redis Insight on AWS.
The first step is to install Docker for your operating system.
You can install Redis Insight using one of the options described below.
docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest
/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.