Docker lifecycle
Skill dor-rondel/agent-skills-mcp/resources/docker/docker-lifecycle
mcp server serving coding agent skills with helper tools
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Use this skill when the user asks to start, stop, restart, or check the status of the local Docker container infrastructure.
SKILL.md
0.9 KB, 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