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.
This commit is contained in:
Yury Kossakovsky
2025-09-02 17:11:20 -06:00
parent f6e192d9e1
commit f6bbb22508
2 changed files with 3 additions and 2 deletions

View File

@@ -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}