Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@

## What is this?

This repository allows you to quickly install Redis into a [DDEV](https://ddev.readthedocs.io) project using just `ddev get ddev/ddev-redis`.
This repository allows you to quickly install Redis into a [DDEV](https://ddev.readthedocs.io) project using the instructions below.

## Installation

1. `ddev get ddev/ddev-redis`
2. `ddev restart`
For DDEV v1.23.5 or above run

```sh
ddev add-on get ddev/ddev-redis
```

For earlier versions of DDEV run

```sh
ddev get ddev/ddev-redis
```

Then restart your project

```sh
ddev restart
```

With DDEV v1.23.5+ you can choose a different Redis tag, the command below creates a `.ddev/.env.redis` file that you can commit:

Expand Down