From f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Vis=C3=A9e?= Date: Tue, 23 Dec 2025 17:29:57 +0100 Subject: [PATCH] Add security caution banner to quick start command (#7815) * Show simple security banner in quick start guide * Swap sentence * Refer to new secure your instance section * Shorten text to fit on single line --- README.md | 3 +++ docs/QUICK_START.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index f363fdf8f9..9b41c70230 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,9 @@ To experience the full power of Qdrant locally, run the container with this comm docker run -p 6333:6333 qdrant/qdrant ``` +> [!CAUTION] +> Starts an insecure deployment without authentication open to all network interfaces. Please refer to [secure your instance](https://qdrant.tech/documentation/guides/security/#secure-your-instance). + Now you can connect to this with any client, including Python: ```python diff --git a/docs/QUICK_START.md b/docs/QUICK_START.md index 4454405f2a..3060e86c16 100644 --- a/docs/QUICK_START.md +++ b/docs/QUICK_START.md @@ -17,6 +17,9 @@ Run it with default configuration: docker run -p 6333:6333 qdrant/qdrant ``` +> [!CAUTION] +> Starts an insecure deployment without authentication open to all network interfaces. Please refer to [secure your instance](https://qdrant.tech/documentation/guides/security/#secure-your-instance). + Build your own from source ```bash