Control Qdrant vector database Docker service
Manages Qdrant vector database Docker service lifecycle and monitoring.
/plugin marketplace add mindmorass/reflex/plugin install reflex@mindmorass-reflex<start|stop|status|logs>Start, stop, or check status of the Qdrant vector database container.
The docker-compose file is located at ~/.claude/docker/qdrant/.
start - Start the Qdrant containerstop - Stop the Qdrant containerstatus - Show container status and healthlogs - Show recent container logscd "$HOME/.claude/docker/qdrant" && docker compose up -d
echo ""
echo "Qdrant started on:"
echo " REST API: http://localhost:6333"
echo " Dashboard: http://localhost:6333/dashboard"
echo " gRPC: localhost:6334"
cd "$HOME/.claude/docker/qdrant" && docker compose down
echo "Qdrant stopped."
echo "**Container Status:**"
docker ps --filter "name=qdrant" --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" 2>/dev/null || echo "Not running"
echo ""
echo "**Health Check:**"
if curl -s http://localhost:6333/readyz >/dev/null 2>&1; then
echo "Qdrant is healthy and ready"
else
echo "Qdrant is not responding"
fi
cd "$HOME/.claude/docker/qdrant" && docker compose logs --tail=50
If no argument or invalid argument provided, show usage:
Usage: /reflex:qdrant <start|stop|status|logs>
Control Qdrant vector database Docker service.
Commands:
start Start the Qdrant container
stop Stop the Qdrant container
status Show container status and health
logs Show recent container logs
Ports:
6333 REST API + Dashboard
6334 gRPC
Dashboard: http://localhost:6333/dashboard