fix(docker): pass docker_mount_cwd_to_workspace and docker_forward_env to container_config in file_tools

file_tools._get_file_ops() built a container_config dict for Docker/
Singularity/Modal/Daytona backends but omitted docker_mount_cwd_to_workspace
and docker_forward_env. Both are read by _create_environment() from
container_config, so file tools (read_file, write_file, patch, search)
silently ignored those config values when running in Docker.

Add the two missing keys to match the container_config already built by
terminal_tool.terminal_tool().

Fixes #2672.
This commit is contained in:
teyrebaz33 2026-03-24 02:22:46 +03:00 committed by Teknium
parent 4c50b4689e
commit 2d59afd3da
2 changed files with 67 additions and 0 deletions

View file

@ -278,6 +278,8 @@ def _get_file_ops(task_id: str = "default") -> ShellFileOperations:
"container_disk": config.get("container_disk", 51200),
"container_persistent": config.get("container_persistent", True),
"docker_volumes": config.get("docker_volumes", []),
"docker_mount_cwd_to_workspace": config.get("docker_mount_cwd_to_workspace", False),
"docker_forward_env": config.get("docker_forward_env", []),
}
ssh_config = None