You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
28
28
29
29
```bash
30
-
docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest -v redisinsight:/data
30
+
docker run -d --name redisinsight -p 5540:5540 -v redisinsight:/data redis/redisinsight:latest
31
31
```
32
32
33
33
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).
0 commit comments