Skip to content
Docs

inquir apps exec

Execute a command in the application’s production container.

@inquir/compute-cliv0.3.0 · Node.js 22+

Usage#

inquir apps execbash
inquir apps exec <app> [--timeout <ms>] -- <command>

Options#

OptionDescription
--timeout <ms>Maximum command execution time in milliseconds.
--jsonPrint machine-readable results.

Global flags, environments and CLI credentials

Examples#

Example 1bash
inquir apps exec web -- ls -la /app
Example 2bash
inquir apps exec web --timeout 10000 -- node --version

Behavior#

The identifier is an application, not a preview or release ID. This is command execution, not an interactive terminal.

Keep CLI flags before --; everything after it belongs to the container command.

Guides#