19 lines
397 B
YAML
19 lines
397 B
YAML
version: "3.9"
|
|
services:
|
|
redis:
|
|
container_name: redis-stack
|
|
image: "redis/redis-stack:latest"
|
|
ports:
|
|
- 6380:6379
|
|
environment:
|
|
- REDIS_ARGS="--notify-keyspace-events Ksg"
|
|
- REDIS_AOF_ENABLED=yes
|
|
volumes:
|
|
- ./redis-data:/data
|
|
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
|
networks:
|
|
- bizmatch
|
|
|
|
networks:
|
|
bizmatch:
|
|
external: true |