You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
440 B
YAML
18 lines
440 B
YAML
services:
|
|
redis-stack:
|
|
image: redis/redis-stack:latest
|
|
container_name: redis-stack
|
|
ports:
|
|
- "6379:6379" # Redis port
|
|
- "8001:8001" # RedisInsight port
|
|
volumes:
|
|
- ./data/redis:/data
|
|
environment:
|
|
- REDIS_ARGS=--dir /data --appendonly no --save 1800 1
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: [ "CMD", "redis-cli", "ping" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|