Docker lifecycle
Skill dor-rondel/agent-skills-mcp/resources/docker/docker-lifecycle
Use this skill when the user asks to start, stop, restart, or check the status of the local Docker container infrastructure.From its SKILL.md
npx -y skills add dor-rondel/agent-skills-mcp --skill docker-lifecycleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 4 commands, including `docker-compose up -d` and 3 more.
SKILL.md
0.9 KB, 164 tokens by cl100k_base, as published. Nobody here has run it
Docker Infrastructure Lifecycle Management
This skill handles booting, tearing down, and inspecting the local development infrastructure stack containing Ollama and ChromaDB.
🏃♂️ Core Commands
1. Boot Environment
Spin up all services in detached background mode. This will automatically execute the entrypoint script to verify and pull required models:
docker-compose up -d
2. Shut Down Environment
Stop and remove all running containers in the stack without breaking persistent data volumes:
docker-compose down
3. Inspect Service Status
Check the logs or health status of active containers to ensure Ollama and ChromaDB are operational:
docker-compose ps
docker-compose logs -f
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.