docker-reset

Reset Qdrant vector data and mem0 memories via docker compose.

18|6|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/minh2004pd/chatbotfullpipeline --skill docker-reset
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: docker-reset
Source: https://github.com/minh2004pd/chatbotfullpipeline/tree/main/.claude/skills/docker-reset
Command: npx skills add https://github.com/minh2004pd/chatbotfullpipeline --skill docker-reset

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables a full reset of Qdrant vector data and memories to a clean state, which is essential when embedding dimensions change or data becomes corrupted.

Core Features & Use Cases

  • Safely down and remove old data and volumes from Qdrant and mem0 memories.
  • Reinitialize collections on startup via ensure_collections() to restore a working RAG setup.
  • Use after configuration errors, data corruption, or when starting fresh to ensure a clean baseline.

Quick Start

From the project root, run docker compose down -v && docker compose up -d to reset Qdrant and reinitialize collections on startup.

Frequently Asked Questions about docker-reset

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reset Qdrant vector data when embedding dimensions change?

To reset Qdrant vector data after embedding dimensions change, run docker compose down -v && docker compose up -d from the project root to clear volumes and reinitialize collections on startup via ensure_collections().

Why does my RAG stack fail after updating embedding model configurations?

Your RAG stack fails because existing Qdrant collections retain the old embedding dimensions. You must reset Qdrant data and mem0 memories to a clean state before the new embedding dimensions can be applied.

Can I reset Qdrant and mem0 memories without docker-compose?

No, you cannot reset Qdrant and mem0 memories without docker-compose. This Skill requires running from the project root with docker-compose available to execute the necessary down and up commands.

What's the best way to clear corrupted Qdrant data for a fresh RAG setup?

The best way to clear corrupted Qdrant data is running docker compose down -v && docker compose up -d to remove old volumes and reinitialize collections on startup, restoring a clean RAG baseline.

Does resetting Qdrant volumes permanently delete all vector data?

Yes, resetting Qdrant volumes permanently deletes all vector data and mem0 memories. This full reset is intended for data corruption or configuration errors where a completely fresh start is required.