Description
The dcos task exec command allows you to launch a process (<cmd>) inside of a task’s (<task>) container. To use this command, the task must be in a Universal Containerizer Runtime (UCR) container.
Usage
dcos task exec [--interactive --tty] <task> <cmd> [<args>...]
Options
| Name |
Description |
--interactive, -i |
Attach a STDIN stream to the remote command for an interactive session. |
--tty, -t |
Attach a TTY to the remote stream. |
Positional arguments
| Name |
Description |
<args> |
Additional arguments to pass to the command (<cmd>). |
<cmd> |
The command to run inside the remote task’s container. For example: /bin/bash. |
<task> |
A full task ID, a partial task ID, or a UNIX shell wildcard pattern (for example, my-task*). |
Parent command
| Command |
Description |
| dcos task |
Manage DC/OS tasks. |
Examples
For examples, see the debugging documentation.