Skip to content

Commit 4d46726

Browse files
authored
Docs: Updated executor manager prerequisites (#11978)
### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [ ] New Feature (non-breaking change which adds functionality) - [x] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
1 parent 0e8b958 commit 4d46726

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/develop/migrate_to_single_bucket_mode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
---
43
sidebar_position: 20
54
slug: /migrate_to_single_bucket_mode

docs/guides/agent/agent_component_reference/code.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ docker pull infiniflow/sandbox-base-python:latest
130130

131131
**Root cause**
132132

133-
The executor manager image you are running includes Docker CLI 24.x (API 1.43) while the host Docker daemon now requires API 1.44+ (e.g., Docker 25+ / 29.x).
133+
Your executor manager image includes Docker CLI 24.x (API 1.43), but the host Docker daemon, e.g., Docker 25+ / 29.x, now requires API 1.44+.
134134

135135
**Solution**
136136

137-
Pull the refreshed image or rebuild locally so the embedded Docker client is new enough:
137+
Pull the latest executor manager image or rebuild it locally to upgrade the built-in Docker client:
138138

139139
```bash
140140
docker pull infiniflow/sandbox-executor-manager:latest

docs/guides/agent/sandbox_quickstart.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ The architecture consists of isolated Docker base images for each supported lang
2323

2424
- Linux distribution compatible with gVisor.
2525
- gVisor installed and configured.
26-
- Docker version 25.0 or higher (API 1.44+). The executor manager image now ships Docker CLI `29.1.0` to stay compatible with newer Docker daemons.
26+
- Docker version 25.0 or higher (API 1.44+). Ensure your executor manager image ships with Docker CLI `29.1.0` or higher to stay compatible with the latest Docker daemons.
2727
- Docker Compose version 2.26.1 or higher (similar to RAGFlow requirements).
2828
- uv package and project manager installed.
2929
- (Optional) GNU Make for simplified command-line management.
3030

31-
> **Note:** If you see `client version 1.43 is too old. Minimum supported API version is 1.44`, pull the latest `infiniflow/sandbox-executor-manager:latest` from Docker Hub (or rebuild `./sandbox/executor_manager`). Older images embedded Docker 24.x, which cannot talk to upgraded Docker daemons.
31+
:::tip NOTE
32+
The error message `client version 1.43 is too old. Minimum supported API version is 1.44` indicates that your executor manager image's built-in Docker CLI version is lower than `29.1.0` required by the Docker daemon in use. To solve this issue, pull the latest `infiniflow/sandbox-executor-manager:latest` from Docker Hub (or rebuild `./sandbox/executor_manager`).
33+
:::
3234

3335
## Build Docker base images
3436

0 commit comments

Comments
 (0)