https://github.com/wayofthepie/docker-rejson
Redis 4 docker image with rejson
https://github.com/wayofthepie/docker-rejson
docker docker-rejson redis rejson
Last synced: 3 months ago
JSON representation
Redis 4 docker image with rejson
- Host: GitHub
- URL: https://github.com/wayofthepie/docker-rejson
- Owner: wayofthepie
- Created: 2017-05-20T16:32:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-10T22:53:26.000Z (almost 9 years ago)
- Last Synced: 2025-04-12T22:49:08.043Z (over 1 year ago)
- Topics: docker, docker-rejson, redis, rejson
- Language: Shell
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redis ReJSON Image
Docker image for redis 4.0 with the rejson module.
# Building And Running
Simply run `build.sh` with the name you want to give the image to build.
```
$ ./build.sh redis-json
```
To launch a container:
```
$ docker run --name rj --rm redis-json
```
Or, with the port to connect to exposed on the host:
```
$ docker run --name rj --rm -p 6379:6379 redis-json
```
Finally, to run the cli on a running instance:
```
$ docker exec -ti rj redis-cli
```