Add gRPC and HTTP REST API ports to Qdrant service in docker-compose.yml

- Exposed ports 6333 and 6334 for gRPC and HTTP REST API access, respectively, enhancing service connectivity and functionality.
This commit is contained in:
Yury Kossakovsky
2025-05-22 17:47:42 -06:00
parent 1db81b35da
commit a9a6493e5f

View File

@@ -143,6 +143,9 @@ services:
restart: unless-stopped
volumes:
- qdrant_storage:/qdrant/storage
expose:
- "6333" # gRPC port
- "6334" # HTTP REST API port
caddy:
container_name: caddy