https://github.com/mariusmuntean/visualizerdb
https://github.com/mariusmuntean/visualizerdb
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mariusmuntean/visualizerdb
- Owner: mariusmuntean
- License: mit
- Created: 2022-05-22T14:21:32.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-09T07:40:58.000Z (over 3 years ago)
- Last Synced: 2026-03-05T23:42:35.275Z (4 months ago)
- Size: 42.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE
Awesome Lists containing this project
README
Run the Redis Stack container with:
docker run -p 6379:6379 -p 8001:8001 -v "$(pwd)":/data -v "$(pwd)"/local-redis-stack.conf:/redis-stack.conf redis/redis-stack:latest
Port 6379 is the default Redis server port
Port 8001 is the default Redis Insight port
The DB is persisted in the current working directory (with a default name)
The file local-redis-stack.conf is a custom config file. This is optional.
Run Redis Stack Server from binary with:
redis-stack-server local-redis-stack.conf --dir "$(PWD)"
Uses the specified local-redis-stack.conf configuration file
Overrides the "dir" option to the working directory. If there is a dump.rdb in the local directory it will be picked up.