Docker Lifecycle

Use this skill when the user asks to start, stop, restart, or check the status of the local Docker container infrastructure.

dor-rondel Updated

File contents

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

dor-rondel/agent-skills-mcp/tree/main/resources/docker/docker-lifecycle commit c92758c2b7

Frequently asked questions

npx skillmds@latest add dor-rondel/docker-lifecycle