Running OpenClaw Inside Ollama's Docker Container for Simpler Networking

One r/openclaw user shared a setup that puts OpenClaw inside the same Docker container as Ollama, eliminating the need for host.docker.internal or container hostnames. The approach is straightforward: start from the official ollama/ollama image, install OpenClaw inside it, and have OpenClaw talk to Ollama on 127.0.0.1:11434. This avoids common networking friction but comes with heavy RAM usage.
Key setup steps
Launch the container with GPU support, persistent model storage, and ports 11434 and 18789 (for OpenClaw's gateway):
docker run -d \
--name ollamaopenclaw \
--gpus=all \
-v ollama_docker:/root/.ollama \
-p 11434:11434 \
-p 18789:18789 \
ollama/ollama
To bind ports only to localhost:
docker run -d \
--name ollamaopenclaw \
--gpus=all \
-v ollama_docker:/root/.ollama \
-p 127.0.0.1:11434:11434 \
-p 127.0.0.1:18789:18789 \
ollama/ollama
Open a shell in the container and install OpenClaw:
docker exec -it ollamaopenclaw sh
apt-get update && apt-get install -y curl git bash ca-certificates
curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install-cli.sh | bash
export PATH="$HOME/.openclaw/bin:$PATH"
openclaw --version
Pull models (tested with small Qwen variants):
ollama pull qwen3.5:0.8b
ollama pull qwen3.5:2b
ollama pull qwen3.5:4b
ollama list
Configure OpenClaw's gateway:
export OLLAMA_API_KEY="ollama-local"
openclaw config set gateway.bind lan
openclaw config set gateway.port 18789
openclaw config set gateway.controlUi.allowedOrigins '["http://localhost:18789","http://127.0.0.1:18789"]' --strict-json
Start the gateway (keep the terminal open):
openclaw gateway run --bind lan --port 18789 --allow-unconfigured
In a second terminal, exec into the container again and run OpenClaw:
docker exec -it ollamaopenclaw sh
export PATH="$HOME/.openclaw/bin:$PATH"
export OLLAMA_API_KEY="ollama-local"
# Then run openclaw commands
Results and trade-offs
The setup works: OpenClaw uses 127.0.0.1:11434 for Ollama, no extra networking config needed. Ports and storage stay isolated. However, RAM usage is heavy—large prompts overwhelm small local models (0.8B to 4B tested). The user notes this is not a lightweight solution but is cleaner from a container isolation perspective.
Who it's for
Developers who want to run OpenClaw and Ollama in a single Docker container to avoid host networking and host.docker.internal headaches, especially for local or CI-bound LLM toolchains.
📖 Read the full source: r/openclaw
👀 See Also

How to disable Claude Code's verb spinner feature
Claude Code includes a default verb spinner that displays whimsical gerunds like 'Seasoning' and 'Crafting' during processing. You can disable it by editing the settings.json file with a blank space in the spinnerVerbs array.

Get Emoji-Decorated Checklists in Claude by Adding One Line to CLAUDE.md
Add a one-line marker set to your user-level CLAUDE.md to make Claude decorate checklists with status emojis — 14 fixed icons for done, running, failed, blocked, etc.

Claude Design: 7 Tips to Avoid Burning Through Your Limits
Lock brief in regular Claude chat first, set up design system before first prompt, attach references as screenshots, link subdirectories not whole repos, use sliders for small tweaks, paste inline comments as backup, match export format to destination.

Eight Prompting Techniques That Improve Claude Output Quality
A Reddit user shares eight specific prompting techniques that consistently improved their Claude output quality, including commands like "Think through every layer before answering" and "Find the 20% of actions that drive 80% of results."