COMBINE GUIDE - FULL STACK
Main takeaway: start three core services, then add Agent Zero
This gives you local generation (Ollama), orchestration (OpenClaw), automation (n8n), and interactive agent UI (Agent Zero).
Bring up core services
ollama serve
openclaw gateway start
n8n start
docker run -p 50001:80 agent0ai/agent-zeroExpected result: all four components are available on localhost.
Bring up core services
ollama serve
openclaw gateway start
n8n start
docker run -p 50001:80 agent0ai/agent-zeroExpected result: same behavior as Windows.
Bring up core services
ollama serve
openclaw gateway start
n8n start
docker run -p 50001:80 agent0ai/agent-zeroExpected result: all services run with no fatal errors.
Verify each layer
ollama list
openclaw gateway status
n8n --version
docker psExpected result: each command confirms service health.
Simple production loop
Capture notes, summarize with Ollama, route with n8n, and manage lifecycle with OpenClaw.
Expected result: repeatable daily workflow with local control.
Common fixes
If one service fails, stop and restart only that service first.
If Docker container exits, run docker logs <container_id> to inspect errors.
If ports collide, move one service to another port and update n8n endpoints.
Back to guides hub
Review Install and Use pages.
Open guides hub →Three-tool workflow
Use this if you want a smaller stack first.
Open focused guide →