new config
This commit is contained in:
parent
bef937fc7a
commit
a8450aa792
|
|
@ -4,10 +4,10 @@ services:
|
|||
container_name: redis-stack
|
||||
image: "redis/redis-stack:latest"
|
||||
ports:
|
||||
- 6380:6379
|
||||
- '6380:6380'
|
||||
environment:
|
||||
- REDIS_ARGS="--notify-keyspace-events Ksg"
|
||||
- REDIS_AOF_ENABLED=yes
|
||||
- REDIS_ARGS = "--save 10 1 --appendonly yes"
|
||||
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
|
||||
volumes:
|
||||
- ./redis-data:/data
|
||||
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
||||
|
|
@ -16,4 +16,4 @@ services:
|
|||
|
||||
networks:
|
||||
bizmatch:
|
||||
external: true
|
||||
external: true
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
port 6380
|
||||
daemonize no
|
||||
loadmodule /opt/redis-stack/lib/rediscompat.so
|
||||
loadmodule /opt/redis-stack/lib/redisearch.so
|
||||
|
|
@ -7,4 +8,6 @@ loadmodule /opt/redis-stack/lib/redisbloom.so
|
|||
loadmodule /opt/redis-stack/lib/redisgears.so v8-plugin-path /opt/redis-stack/lib/libredisgears_v8_plugin.so
|
||||
|
||||
appendonly yes
|
||||
appendfsync always
|
||||
appendfsync always
|
||||
|
||||
protected-mode no
|
||||
|
|
|
|||
Loading…
Reference in New Issue