https://github.com/redis-developer/redismod-docker-compose
Contains a docker-compose.yml using redismod : a Docker image with selected Redis Labs modules
https://github.com/redis-developer/redismod-docker-compose
Last synced: 12 months ago
JSON representation
Contains a docker-compose.yml using redismod : a Docker image with selected Redis Labs modules
- Host: GitHub
- URL: https://github.com/redis-developer/redismod-docker-compose
- Owner: redis-developer
- Created: 2021-03-31T20:28:04.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-14T15:04:34.000Z (almost 2 years ago)
- Last Synced: 2025-01-25T09:27:37.659Z (about 1 year ago)
- Size: 1.95 KB
- Stars: 5
- Watchers: 5
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redismod-docker-compose
This repo contains a Docker Compose file configured to use the RedisLabs
redismod image; a Docker image with selected Redis Labs modules.
## Pre-requisites
- Docker: https://docs.docker.com/get-docker/
- Docker Compose: https://docs.docker.com/compose/install/
This image runs Redis on the default port 6379 which you can access as if
it were a local install of Redis. Just ensure that you shut down any other
Redis instances that might be on port 6379 before starting this one.
It also run Redis in appendonly mode (AOF - Append Only File). The AOF
persistence logs every write operation received by the server, that will
be played again at server startup, reconstructing the original dataset.
The image stores the data file under the ./data directory.
To launch Redis simply enter:
```
docker-compose up
```