Docker Helper
Use this skill to read Docker state for the repo and list stored data sources.
Quickstart
- Status + capabilities:
powershell -ExecutionPolicy Bypass -File skills\\docker-helper\\scripts\\docker_inventory.ps1 -Action status -ListCapabilities
Workflow
- Confirm Docker is available
docker versiondocker compose version
- Inspect containers and compose services
docker ps -adocker compose ps
- Inspect volumes and storage
docker volume lsdocker system df- For repo volumes, run:
docker volume inspect qdrant_storagedocker volume inspect neo4j_data
- Report findings
- Note which services are up, stopped, or missing.
- Identify which volumes exist and their mountpoints.
Script
- Run:
powershell -ExecutionPolicy Bypass -File skills\docker-helper\scripts\docker_inventory.ps1 - With volume details:
-ShowVolumes - List capabilities:
-ListCapabilities - Action examples:
-Action status-Action start -Target neo4j-Action stop -Target dev_graph_api-Action restart -Target qdrant_db-Action logs -Target dev_graph_ui -LogsTail 200
Notes
- This skill can start/stop/restart services via docker compose in the repo root.
docker composeactions auto-detect the repo root (by locatingdocker-compose.yml).- The compose file may warn that the
versionfield is obsolete; ignore the warning.