修复Redis MISCONF导致Celery写入失败
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
@@ -20,7 +20,14 @@ services:
|
||||
- "${REDIS_PORT}:6379"
|
||||
volumes:
|
||||
- ./data/redis:/data
|
||||
command: redis-server --appendonly yes
|
||||
command:
|
||||
- redis-server
|
||||
- --appendonly
|
||||
- "yes"
|
||||
- --save
|
||||
- ""
|
||||
- --stop-writes-on-bgsave-error
|
||||
- "no"
|
||||
restart: unless-stopped
|
||||
|
||||
minio:
|
||||
|
||||
@@ -16,7 +16,14 @@ services:
|
||||
redis:
|
||||
image: ${REDIS_IMAGE}
|
||||
container_name: ${COMPOSE_PROJECT_NAME}-redis
|
||||
command: redis-server --appendonly yes
|
||||
command:
|
||||
- redis-server
|
||||
- --appendonly
|
||||
- "yes"
|
||||
- --save
|
||||
- ""
|
||||
- --stop-writes-on-bgsave-error
|
||||
- "no"
|
||||
ports:
|
||||
- "${REDIS_PORT}:6379"
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user