Back to Browse

Installing NoSQL Redis database from Docker and Interact directly with CLI

1.1K views
May 19, 2024
3:53

It is demonstrated a very simple example from Redis usage, installing that in Windows OS using Docker and then interacting with that directly with CLI client. docker pull redis/redis-stack-server:latest docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest docker exec -it redis-stack-server /bin/bash redis-cli set myVariable 1000 get myVariable

Download

0 formats

No download links available.

Installing NoSQL Redis database from Docker and Interact directly with CLI | NatokHD