From aa972924a7b727f55adb392faffe5eb20ac3b394 Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Sat, 28 Feb 2026 18:28:15 +0100 Subject: [PATCH 1/4] add Claude Code --- .../ai/model-runner/ide-integrations.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/content/manuals/ai/model-runner/ide-integrations.md b/content/manuals/ai/model-runner/ide-integrations.md index b4d726f4e580..4cde9fe0ee04 100644 --- a/content/manuals/ai/model-runner/ide-integrations.md +++ b/content/manuals/ai/model-runner/ide-integrations.md @@ -258,6 +258,24 @@ print(response.text) You can find more details in [this Docker Blog post](https://www.docker.com/blog/opencode-docker-model-runner-private-ai-coding/) +## Claude Code + +[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows through natural language commands. + +### Configuration + +1. Install Claude Code (see [docs](https://code.claude.com/docs/en/quickstart#step-1-install-claude-code)) +2. Use the `ANTHROPIC_BASE_URL` environment varialbe to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model: + ``` + ANTHROPIC_BASE_URL=http://localhost:12434 claude --model gpt-oss:32k + ``` + On Windows (PowerShell) you can do it like this: + ``` + $env:ANTHROPIC_BASE_URL="http://localhost:12434" + claude --model gpt-oss:32k + ``` +You can find more details in [this Docker Blog post](https://www.docker.com/blog/run-claude-code-locally-docker-model-runner/) + ## Common issues ### "Connection refused" errors From 6e097cb3bec89efc1df38296362228cc5dacd698 Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Sat, 28 Feb 2026 18:31:42 +0100 Subject: [PATCH 2/4] add language --- content/manuals/ai/model-runner/ide-integrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/ai/model-runner/ide-integrations.md b/content/manuals/ai/model-runner/ide-integrations.md index 4cde9fe0ee04..bef8f9373f9f 100644 --- a/content/manuals/ai/model-runner/ide-integrations.md +++ b/content/manuals/ai/model-runner/ide-integrations.md @@ -266,11 +266,11 @@ You can find more details in [this Docker Blog post](https://www.docker.com/blog 1. Install Claude Code (see [docs](https://code.claude.com/docs/en/quickstart#step-1-install-claude-code)) 2. Use the `ANTHROPIC_BASE_URL` environment varialbe to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model: - ``` + ```bash ANTHROPIC_BASE_URL=http://localhost:12434 claude --model gpt-oss:32k ``` On Windows (PowerShell) you can do it like this: - ``` + ```powershell $env:ANTHROPIC_BASE_URL="http://localhost:12434" claude --model gpt-oss:32k ``` From caa8626ac935ba62557be61cda88f23834bf4629 Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Sat, 28 Feb 2026 18:32:58 +0100 Subject: [PATCH 3/4] fix reviewdog flags --- content/manuals/ai/model-runner/ide-integrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/ai/model-runner/ide-integrations.md b/content/manuals/ai/model-runner/ide-integrations.md index bef8f9373f9f..9fba06612ead 100644 --- a/content/manuals/ai/model-runner/ide-integrations.md +++ b/content/manuals/ai/model-runner/ide-integrations.md @@ -260,12 +260,12 @@ You can find more details in [this Docker Blog post](https://www.docker.com/blog ## Claude Code -[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows through natural language commands. +[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling Git workflows through natural language commands. ### Configuration 1. Install Claude Code (see [docs](https://code.claude.com/docs/en/quickstart#step-1-install-claude-code)) -2. Use the `ANTHROPIC_BASE_URL` environment varialbe to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model: +2. Use the `ANTHROPIC_BASE_URL` environment variable to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model: ```bash ANTHROPIC_BASE_URL=http://localhost:12434 claude --model gpt-oss:32k ``` From a217ea36e7abfdfc93dd85d6237ae9c728259c62 Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Mon, 2 Mar 2026 22:33:25 +0100 Subject: [PATCH 4/4] implement docker-agent suggestions --- content/manuals/ai/model-runner/ide-integrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/ai/model-runner/ide-integrations.md b/content/manuals/ai/model-runner/ide-integrations.md index 9fba06612ead..0a9556ee8787 100644 --- a/content/manuals/ai/model-runner/ide-integrations.md +++ b/content/manuals/ai/model-runner/ide-integrations.md @@ -260,12 +260,12 @@ You can find more details in [this Docker Blog post](https://www.docker.com/blog ## Claude Code -[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling Git workflows through natural language commands. +[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and executes routine tasks, explains complex code, and handles Git workflows through natural language commands. ### Configuration 1. Install Claude Code (see [docs](https://code.claude.com/docs/en/quickstart#step-1-install-claude-code)) -2. Use the `ANTHROPIC_BASE_URL` environment variable to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model: +2. Use the `ANTHROPIC_BASE_URL` environment variable to point Claude Code at DMR. On Mac or Linux, you can do this, for example if you want to use the `gpt-oss:32k` model: ```bash ANTHROPIC_BASE_URL=http://localhost:12434 claude --model gpt-oss:32k ```