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.
This commit is contained in:
Colin 2025-05-01 17:02:49 +02:00 committed by GitHub
parent 2e7322f23d
commit 1ebf6666ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,8 +39,8 @@ services:
environment: environment:
DB_HOST: db DB_HOST: db
DB_PORT: "3306" DB_PORT: "3306"
REDIS_CACHE: redis-cache:6379 REDIS_CACHE: redis://redis-cache:6379
REDIS_QUEUE: redis-queue:6379 REDIS_QUEUE: redis://redis-queue:6379
SOCKETIO_PORT: "9000" SOCKETIO_PORT: "9000"
volumes: volumes:
- sites:/home/frappe/frappe-bench/sites - sites:/home/frappe/frappe-bench/sites