# Install on Docker This tutorial shows how to install Redis Insight on [Docker](https://www.docker.com/) so you can use Redis Insight in development. See a separate guide for installing [Redis Insight on AWS](https://redis.io/docs/latest/operate/redisinsight/install/install-on-aws). ## Install Docker The first step is to [install Docker for your operating system](https://docs.docker.com/install/). ## 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: ```bash docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest ``` 2. If you want to persist your Redis Insight data, first attach the Docker volume to the `/data` path and then run the following command: ```bash 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.