From 421a20ba8c5e6d1901b6d58becc939ff6f4dc456 Mon Sep 17 00:00:00 2001 From: tetebueno <9064236+tetebueno@users.noreply.github.com> Date: Mon, 16 Jun 2025 12:58:39 -0300 Subject: [PATCH] Using Redis default directory for data. For some reason for original Docker compose configuration path `/data` was correct, but for production this directory is used which isn't used by Redis, except if it's configured expressly. Checked here: https://github.com/redis/docker-library-redis/blob/master/7.4/alpine/Dockerfile#L134 --- docker/docker-compose.production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose.production.yml b/docker/docker-compose.production.yml index 5705da9b..608a916e 100644 --- a/docker/docker-compose.production.yml +++ b/docker/docker-compose.production.yml @@ -8,7 +8,7 @@ services: networks: - dawarich volumes: - - dawarich_redis_data:/var/shared/redis + - dawarich_redis_data:/data restart: always healthcheck: test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]