summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2023-01-04 11:15:59 +0200
committerGitHub <noreply@github.com>2023-01-04 11:15:59 +0200
commit3a43190c59da94ac71b58f05c8d57a951602c5f1 (patch)
tree5f40d783a16217221bd759db38ac1ab505f84e81
parented38e77050241a84c0108e47254d1804e8640531 (diff)
downloadredis-py-3a43190c59da94ac71b58f05c8d57a951602c5f1.tar.gz
Including startup instructions via redis-stack docker (#2535)
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index bfd345c..c02483f 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,12 @@ redis-py 4.3.x will be the last generation of redis-py to support python 3.6 as
## Installation
+Start a redis via docker:
+
+``` bash
+docker run -p 6379:6379 -it redis/redis-stack:latest
+```
+
To install redis-py, simply:
``` bash