From 1ebf6666ffd5eef2ea7ab1e5e208325cbac0b722 Mon Sep 17 00:00:00 2001 From: Colin <58808821+codefuturist@users.noreply.github.com> Date: Thu, 1 May 2025 17:02:49 +0200 Subject: [PATCH] fix(docker-compose): prepend redis Previously the environment variables pointed to `redis-cache:6379` and `redis-queue:6379`. This change updates them to `redis://redis-cache:6379` and `redis://redis-queue:6379` for proper URI formatting. --- pwd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwd.yml b/pwd.yml index ee86a293..9e1fc6f9 100644 --- a/pwd.yml +++ b/pwd.yml @@ -39,8 +39,8 @@ services: environment: DB_HOST: db DB_PORT: "3306" - REDIS_CACHE: redis-cache:6379 - REDIS_QUEUE: redis-queue:6379 + REDIS_CACHE: redis://redis-cache:6379 + REDIS_QUEUE: redis://redis-queue:6379 SOCKETIO_PORT: "9000" volumes: - sites:/home/frappe/frappe-bench/sites