Update Qdrant service configuration in docker-compose.yml and final_report.sh

- Removed comments for gRPC and HTTP REST API ports in docker-compose.yml to simplify the configuration.
- Corrected the internal REST API access message in final_report.sh to reflect the updated port usage, ensuring clarity in service access instructions.
This commit is contained in:
Yury Kossakovsky
2025-05-22 17:52:51 -06:00
parent a9a6493e5f
commit 3fd4cc9c23
2 changed files with 2 additions and 4 deletions

View File

@@ -144,8 +144,7 @@ services:
volumes:
- qdrant_storage:/qdrant/storage
expose:
- "6333" # gRPC port
- "6334" # HTTP REST API port
- "6333"
caddy:
container_name: caddy

View File

@@ -120,8 +120,7 @@ if is_profile_active "qdrant"; then
echo
echo "================================= Qdrant =============================="
echo
echo "Internal gRPC Access (e.g., from backend): qdrant:6333"
echo "Internal REST API Access (e.g., from backend): http://qdrant:6334"
echo "Internal REST API Access (e.g., from backend): http://qdrant:6333"
echo "(Note: Not exposed externally via Caddy by default)"
fi