Updated to RediSearch edge and removed append only configuration as it was spurious.

This commit is contained in:
Simon Prickett 2022-01-11 16:01:33 +00:00
parent f9127d1ca0
commit 06a65d36e9

View file

@ -2,13 +2,10 @@ version: "3.8"
services: services:
redis: redis:
image: "redislabs/redismod:edge" image: "redislabs/redisearch:edge"
entrypoint: ["redis-server", "--appendonly", "yes", "--loadmodule", "/usr/lib/redis/modules/rejson.so", "--loadmodule", "/usr/lib/redis/modules/redisearch.so"]
restart: always restart: always
ports: ports:
- "6380:6379" - "6380:6379"
volumes:
- ./data:/data
oss_redis: oss_redis:
image: "redis:latest" image: "redis:latest"