{"id":20329336,"url":"https://github.com/ddev/ddev-redis-7","last_synced_at":"2025-04-11T20:41:57.860Z","repository":{"id":113990333,"uuid":"585919134","full_name":"ddev/ddev-redis-7","owner":"ddev","description":"Redis 7 service for DDEV","archived":false,"fork":false,"pushed_at":"2025-04-10T19:30:30.000Z","size":1591,"stargazers_count":3,"open_issues_count":2,"forks_count":4,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-10T20:42:15.094Z","etag":null,"topics":["ddev-get"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ddev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-06T12:52:58.000Z","updated_at":"2025-04-10T19:30:33.000Z","dependencies_parsed_at":"2024-04-24T09:52:07.110Z","dependency_job_id":"9fb7aa76-3ac7-4ef8-8125-6fdf4ef10e43","html_url":"https://github.com/ddev/ddev-redis-7","commit_stats":null,"previous_names":["ddev/ddev-redis-7"],"tags_count":13,"template":false,"template_full_name":"ddev/ddev-addon-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddev%2Fddev-redis-7","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddev%2Fddev-redis-7/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddev%2Fddev-redis-7/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddev%2Fddev-redis-7/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ddev","download_url":"https://codeload.github.com/ddev/ddev-redis-7/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248479012,"owners_count":21110804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ddev-get"],"created_at":"2024-11-14T20:10:12.972Z","updated_at":"2025-04-11T20:41:57.834Z","avatar_url":"https://github.com/ddev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# ddev-redis-7 - Redis 7 container for DDEV\n\n[![GitHub release (with filter)](https://img.shields.io/github/v/release/ddev/ddev-redis-7)](https://github.com/ddev/ddev-redis-7/releases)\n[![Tests](https://github.com/ddev/ddev-redis-7/actions/workflows/cron_tests.yml/badge.svg)](https://github.com/ddev/ddev-redis-7/actions/workflows/cron_tests.yml)\n![project is maintained](https://img.shields.io/maintenance/yes/2024.svg)\n\n\u003c/div\u003e\n\nThis repository provides [Redis 7](https://redis.com) container for [DDEV](https://ddev.readthedocs.io/).\n\nIt is based on [redis:7.2-alpine](https://hub.docker.com/_/redis/tags?page=1\u0026name=7) docker image and [DDEV custom compose files](https://ddev.readthedocs.io/en/stable/users/extend/custom-compose-files/)\n\n## Comparison to **v6** ([`ddev/ddev-redis`](https://github.com/ddev/ddev-redis))\n\nThere are a lot of differences between v6 addon and this one\n\n| Feature           | ddev/ddev-redis  | ddev/ddev-redis-7 |\n| ----------------- | ---------------- | ----------------- |\n| Maximum Memory    | Unlimited        | 512Mb             |\n| Persistence       | Optional         | **Yes**           |\n| Redis Version     | 6.x.y            | 7.2.x             |\n| Image Size        | ~40Mb            | ~11Mb             |\n| Anonymous Volumes | No               | No                |\n| Optimized config  | No               | **Yes**           |\n\n### Anonymous volumes - Wait, what?\n\nOfficial redis docker container mounts an anonymous volume on `/data` because... reasons. That volume is recreated on every restart. This one mounts the persistence directory on `/data` and names it according to the project name, and gives it a proper label. This way, each DDEV project has it's own data volume, and data can persist accordingly\n\n### Persistence?\n\nYes, persistence. This container is configured to persist data on `/data` volume. This means that if you stop the container, and start it again, the data will be there. This is useful for long-term caching of data, and for keeping the cache primed between ddev restarts.\n\n## Installation\n\nFor DDEV v1.23.5 or above run\n\n```sh\nddev add-on get ddev/ddev-redis-7\n```\n\nFor earlier versions of DDEV run\n\n```sh\nddev get ddev/ddev-redis-7\n```\n\nThen restart your project\n\n```sh\nddev restart\n```\n\n\u003e [!IMPORTANT]  \n\u003e Authentication is setup by default, and the password is `redis`.  \n\u003e If needed, you can auth with a username and password.  \n\u003e Username is `redis` as well.\n\n## Configuration\n\nRedis configuration files are split in the `.ddev/redis/conf` folder, you can modify them as you wish.  \nOtherwise, plugin just works out of the box.\n\n## Commands\n\nAddon exposes the following commands\n\n| Command           | Usage              | Description                        |\n| ----------------- | ------------------ | ---------------------------------- |\n| `redis`           | `ddev redis`       | Launches the **redis-cli**         |\n| `redis *COMMAND*` | `ddev redis`       | Run an arbitrary redis-cli command |\n| `redis-flush`     | `ddev redis-flush` | Clears all the Redis Databases     |\n___\n\n**Based on the original [ddev-contrib recipe](https://github.com/ddev/ddev-contrib/tree/master/docker-compose-services/mongodb)**  \n**Developed and maintained by [Oblak Studio](https://github.com/oblakstudio)**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddev%2Fddev-redis-7","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fddev%2Fddev-redis-7","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddev%2Fddev-redis-7/lists"}