Install on Docker

How to install Redis Insight on Docker

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.

Install Docker

The first step is to install Docker for your operating system.

Run Redis Insight Docker image

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

  1. If you do not want to persist your Redis Insight data:
docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest
  1. 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.

RATE THIS PAGE
Back to top ↑