docker_read_file
Read UTF-8 text files from Docker containers with configurable line ranges. Use offset and limit to target specific sections, defaulting to the first 200 lines.
Instructions
Read a UTF-8 text file from a Docker container. offset and limit select a 1-based line range; limit=0 means unlimited. Defaults to first 200 lines.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute or relative path inside the container. | |
| limit | No | Maximum number of lines to return; 0 means unlimited. | |
| offset | No | 1-based starting line (0 is treated as 1). | |
| container | Yes | Docker container name or id. |