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
Copy file name to clipboardExpand all lines: README.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,18 @@
7
7
8
8
## Overview
9
9
10
+
[Redis Insight](https://redis.io/insight/) is a visual tool that provides capabilities to design, develop, and optimize your Redis application. Query, analyse and interact with your Redis data.
11
+
10
12
This add-on integrates Redis Insight into your [DDEV](https://ddev.com/) project.
11
13
14
+
## Requirements
15
+
16
+
Before installing this add-on, the [Redis service](https://github.com/ddev/ddev-redis) must be available:
17
+
18
+
```bash
19
+
ddev add-on get ddev/ddev-redis
20
+
```
21
+
12
22
## Installation
13
23
14
24
```bash
@@ -22,15 +32,21 @@ After installation, make sure to commit the `.ddev` directory to version control
22
32
23
33
| Command | Description |
24
34
| ------- | ----------- |
35
+
|`ddev redis-insight`| Open Redis Insight in your browser (`https://<project>.ddev.site:5540`) |
25
36
|`ddev describe`| View service status and used ports for Redis Insight |
You may need to adjust the password depending on your Redis configuration:
42
+
43
+
* A `docker-compose.redis-insight_password.yaml` file is automatically created on install, if we detect that Redis needs one.
44
+
* By default, the password is set via `RI_REDIS_PASSWORD=redis` in that file. If you modify it, be sure to remove the `#ddev-generated` comment to prevent your changes from being overwritten.
45
+
30
46
To change the Docker image:
31
47
32
48
```bash
33
-
ddev dotenv set .ddev/.env.redis-insight --redis-insight-docker-image="busybox:stable"
49
+
ddev dotenv set .ddev/.env.redis-insight --redis-insight-docker-image="redis/redisinsight:latest"
34
50
ddev add-on get stasadev/ddev-redis-insight
35
51
ddev restart
36
52
```
@@ -41,7 +57,7 @@ All customization options (use with caution):
echo "Unwilling to remove '$DDEV_APPROOT/.ddev/${file}' because it does not have #ddev-generated in it; you can manually delete it if it is safe to delete."
0 commit comments