Install on Docker

How to install RedisInsight on Docker

This tutorial shows how to install RedisInsight on Docker so you can use RedisInsight in development. See a separate guide for installing RedisInsight on AWS.

Install Docker

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

Run RedisInsight Docker image

You can install RedisInsight using one of the options described below.

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

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

Rate this page