From a2517ad363d744e5e015a9e05674dfaef7fd8dab Mon Sep 17 00:00:00 2001 From: Michael Bunsen Date: Thu, 13 Nov 2025 19:18:29 -0800 Subject: [PATCH] fix: add rabbitmq hostname config to prod worker compose --- docker-compose.worker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.worker.yml b/docker-compose.worker.yml index fb98c28f7..b2aef392a 100644 --- a/docker-compose.worker.yml +++ b/docker-compose.worker.yml @@ -14,6 +14,7 @@ services: - "5001:5000" extra_hosts: - "db:${DATABASE_IP}" + - "rabbitmq:${RABBITMQ_IP}" - "redis:${REDIS_IP}" command: /start scale: 0 # We don't need the Django service running, but we inherit the worker settings from it.