Skip to content

Commit b1891aa

Browse files
committed
fix: remove Qdrant host port mapping to avoid port conflict on install
1 parent aab60cd commit b1891aa

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

.env.template

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# SinkDuce environment variables
22
# Copy this file to .env and modify as needed:
33
# cp .env.template .env
4+
#
5+
# If you see "port is already allocated" error, change the port below.
46

57
# Backend API port (default: 18900)
68
API_PORT=18900
79

810
# Frontend dev server port (default: 5173)
911
UI_PORT=5173
10-
11-
# Qdrant vector database HTTP port (default: 6343)
12-
QDRANT_HTTP_PORT=6343
13-
14-
# Qdrant vector database gRPC port (default: 6334)
15-
QDRANT_GRPC_PORT=6334

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ services:
22
qdrant:
33
image: qdrant/qdrant:v1.13.2
44
restart: unless-stopped
5-
ports:
6-
- "${QDRANT_HTTP_PORT:-6343}:6333"
75
volumes:
86
- ./data/qdrant:/qdrant/storage
97
entrypoint: ["/bin/sh", "-c", "find /qdrant/storage -name .DS_Store -delete 2>/dev/null; exec ./entrypoint.sh"]

0 commit comments

Comments
 (0)