Skip to content

Commit cb701a9

Browse files
author
Simon Prickett
authored
Merge pull request #175 from redis/use-redis-stack-container-#173
Moved from redismod container to redis-stack
2 parents fec3315 + 3030a70 commit cb701a9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ jobs:
7474
matrix:
7575
os: [ ubuntu-latest ]
7676
pyver: [ 3.6, 3.7, 3.8, 3.9, pypy3 ]
77-
redismod: [ "preview" ]
77+
redisstack: [ "latest" ]
7878
fail-fast: false
7979
services:
8080
redis:
81-
image: redislabs/redismod:${{ matrix.redismod }}
81+
image: redis/redis-stack:${{ matrix.redisstack }}
8282
ports:
8383
# Maps port 6379 on service container to the host
8484
- 6379:6379
@@ -134,7 +134,7 @@ jobs:
134134
#----------------------------------------------
135135
- name: Install library
136136
run: poetry install --no-interaction
137-
- name: Run unittests (redismod:${{ matrix.redismod }}, ${{ matrix.os }})
137+
- name: Run unittests (redisstack:${{ matrix.redisstack }}, ${{ matrix.os }})
138138
env:
139139
REDIS_OM_URL: "redis://localhost:6379?decode_responses=True"
140140
run: |

docs/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Windows users can also use Docker. See the next section on running Redis with Do
3939

4040
Instead of installing Redis manually or with a package manager, you can run Redis with Docker.
4141

42-
We recommend the [redismod](https://hub.docker.com/r/redislabs/redismod) image because it includes Redis modules that Redis OM can use to give you extra features. Later sections of this guide will provide more detail about these features.
42+
We recommend the [redis-stack](https://hub.docker.com/r/redis/redis-stack) image because it includes Redis modules that Redis OM can use to give you extra features. Later sections of this guide will provide more detail about these features.
4343

44-
You can also use the official Redis Docker image, which is hosted on [Docker Hub](https://hub.docker.com/_/redis).
44+
You can also use the official Redis Docker image, which is hosted on [Docker Hub](https://hub.docker.com/_/redis). However this does not include the Search and JSON modules required to store JSON models and use the `find` query interface.
4545

4646
**NOTE**: We'll talk about how to actually start Redis with Docker when we discuss _running_ Redis later in this guide.
4747

@@ -51,7 +51,7 @@ Redis OM relies on the [RediSearch][redisearch-url] and [RedisJSON][redis-json-u
5151

5252
You don't need these Redis modules to use Redis OM's data modeling, validation, and persistence features, but we recommend them to get the most out of Redis OM.
5353

54-
The easiest way to run these Redis modules during local development is to use the [redismod](https://hub.docker.com/r/redislabs/redismod) Docker image.
54+
The easiest way to run these Redis modules during local development is to use the [redis-stack](https://hub.docker.com/r/redis/redis-stack) Docker image.
5555

5656
For other installation methods, follow the "Quick Start" guides on both modules' home pages.
5757

0 commit comments

Comments
 (0)