Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Perfect for:
5. Inside the WebTop desktop:
- Open a terminal → `ollama signin` (sign in via the Chromium browser that pops up) <img width="703" alt="ollama-signin" src="./docs/ollama-signin.png" />
- Pull a model: `ollama pull kimi-k2.5:cloud` (or any model you like)
- Launch: `ollama launch openclaw --model kimi-k2.5:cloud`
- Launch: `ollama launch openclaw --model kimi-k2.5:cloud --yes` (Use this command for fresh codespace)
- (If there is errors/After first launch) `openclaw gateway run` or `openclaw gateway restart`
- Finally: `openclaw dashboard` → copy the tokenized URL

Expand Down
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG OPENCLAW_VERSION=2026.3.13
ARG OPENCLAW_VERSION=2026.3.22
ARG OLLAMA_VERSION=0.18.2
ARG NODE_VERSION=22
ARG NODE_VERSION=24

# Use the official Ollama image to get the binary
FROM ollama/ollama:${OLLAMA_VERSION} AS ollama-bin
Expand All @@ -27,6 +27,7 @@ RUN echo "runuser -l abc -c 'ollama serve &'" > /custom-cont-init.d/start-ollama
chmod +x /custom-cont-init.d/start-ollama.sh
RUN echo "rm -rf /config/.npm" >> /custom-cont-init.d/init-openclaw.sh && \
echo "chown abc:abc -R /usr/local/lib/node_modules &" >> /custom-cont-init.d/init-openclaw.sh && \
echo "chown abc:abc -R /usr/local/bin &" >> /custom-cont-init.d/init-openclaw.sh && \
chmod +x /custom-cont-init.d/init-openclaw.sh

EXPOSE 11434
Expand Down
Loading