https://github.com/coder966/redis-sentinel-cluster
https://github.com/coder966/redis-sentinel-cluster
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coder966/redis-sentinel-cluster
- Owner: coder966
- Created: 2021-04-15T20:25:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-24T21:32:50.000Z (over 3 years ago)
- Last Synced: 2025-01-17T14:18:34.871Z (4 months ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redis Sentinel Cluster Docker Image
This image simulates a Redis cluster of 2 nodes and a Redis Sentinel cluster of 3 nodes.
Redis nodes: master on port `6381` and salve on port `6382`.
Redis Sentinel nodes: ports 26381 through 26383.
Redis Sentinel master group name: `mymaster`.
Redis password: `mypassword`## How to use this Image
`$ docker run -d -p 6381-6382:6381-6382 -p 26381-26383:26381-26383 coder966/redis-sentinel-cluster:latest`
if you want to configure Redis as an LRU cache, please add `-e "AS_CACHE=yes"`.
## License
```
Copyright 2016 Khalid H. AlharisiLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```