mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
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:
parent
2e7322f23d
commit
1ebf6666ff
1 changed files with 2 additions and 2 deletions
4
pwd.yml
4
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue