From c9ff0b99408de7b308150eb800c39ce97b2c5da6 Mon Sep 17 00:00:00 2001 From: Amju <86785660+amjed-ali-k@users.noreply.github.com> Date: Sun, 29 Dec 2024 17:46:19 +0530 Subject: [PATCH] add username + tsl env vars --- templates/compose/trigger-with-external-database.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/compose/trigger-with-external-database.yaml b/templates/compose/trigger-with-external-database.yaml index e0db4feb7..c92530060 100644 --- a/templates/compose/trigger-with-external-database.yaml +++ b/templates/compose/trigger-with-external-database.yaml @@ -25,6 +25,9 @@ services: - REPLY_TO_EMAIL=${REPLY_TO_EMAIL} - REDIS_HOST=${REDIS_HOST} - REDIS_PORT=${REDIS_PORT} + - 'REDIS_USERNAME=${REDIS_USERNAME}' + - 'REDIS_PASSWORD=${REDIS_PASSWORD}' + - REDIS_TLS_DISABLED=true healthcheck: test: "timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1"