From f6bbb22508d0df7f03cf8533fe48918695c896dc Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Tue, 2 Sep 2025 17:11:20 -0600 Subject: [PATCH] Update docker-compose.yml and final report script to improve Redis configuration and reporting - Changed the default Redis authentication setting in docker-compose.yml to be empty for better flexibility. - Added a dashboard link to the final report script for easier access to Qdrant's dashboard. --- docker-compose.yml | 2 +- scripts/07_final_report.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index aabd6a6..0611713 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -326,7 +326,7 @@ services: LANGFUSE_INGESTION_CLICKHOUSE_WRITE_INTERVAL_MS: ${LANGFUSE_INGESTION_CLICKHOUSE_WRITE_INTERVAL_MS:-} REDIS_HOST: ${REDIS_HOST:-redis} REDIS_PORT: ${REDIS_PORT:-6379} - REDIS_AUTH: ${REDIS_AUTH:-LOCALONLYREDIS} + REDIS_AUTH: ${REDIS_AUTH:-} REDIS_TLS_ENABLED: ${REDIS_TLS_ENABLED:-false} REDIS_TLS_CA: ${REDIS_TLS_CA:-/certs/ca.crt} REDIS_TLS_CERT: ${REDIS_TLS_CERT:-/certs/redis.crt} diff --git a/scripts/07_final_report.sh b/scripts/07_final_report.sh index d13b44c..ed1811b 100644 --- a/scripts/07_final_report.sh +++ b/scripts/07_final_report.sh @@ -197,6 +197,7 @@ if is_profile_active "qdrant"; then echo echo "================================= Qdrant ==============================" echo + echo "Dashboard: https://${QDRANT_HOSTNAME:-}/dashboard" echo "Host: https://${QDRANT_HOSTNAME:-}" echo "API Key: ${QDRANT_API_KEY:-}" echo "Internal REST API Access (e.g., from backend): http://qdrant:6333" @@ -254,7 +255,7 @@ if is_profile_active "n8n" || is_profile_active "langfuse"; then echo echo "Internal Host: ${REDIS_HOST:-redis}" echo "Internal Port: ${REDIS_PORT:-6379}" - echo "Password: ${REDIS_AUTH:-LOCALONLYREDIS} (Note: Default if not set in .env)" + echo "Password: ${REDIS_AUTH:-}" echo "(Note: Primarily for internal service communication, not exposed externally by default)" fi