Open vic-951 opened 11 months ago
I got the solution from Discord. The command is the problem, because of this all modules where not loaded (see https://github.com/redis-stack/redis-stack/blob/master/etc/scripts/entrypoint.sh)
so the solution is to delete the command and set the root path for redis-stack.conf
version: '3'
services:
redis:
image: redis/redis-stack-server:latest
restart: always
container_name: rds
ports:
- "7001:6379"
volumes:
- /home/user/docker/redis/data:/data
- /home/user/docker/redis/conf/redis.conf:/redis-stack.conf
Hello there,
I started a docker container with redis-stack and tried to insert JSON keys but redisinsight tell me: RedisJSON is not available for this database
this is my docker compose file
how can I activate RedisJSON in docker?